/// import { IncomingMessage, ServerResponse } from 'http'; interface UniStaticMiddlewareOptions { etag: boolean; resolve: (pathname: string) => string | void; } export type NextHandler = () => void | Promise; export declare function uniStaticMiddleware(opts: UniStaticMiddlewareOptions): (req: IncomingMessage, res: ServerResponse, next: NextHandler) => void | Promise | ServerResponse; export {};