import type { IncomingMessage, ServerResponse } from 'node:http'; export type HandleStaticOptions = { publicDir: string; assetsDir: string; }; export declare const handleStatic: (req: IncomingMessage, res: ServerResponse, options: HandleStaticOptions) => Promise; //# sourceMappingURL=handle-static.d.ts.map