import type { ServerResponse } from 'node:http'; /** Absolute path to the compiled SPA assets directory. */ export declare const PUBLIC_DIR: string; /** * Serve a static file (no token injection needed) */ export declare function serveStatic(res: ServerResponse, filePath: string, contentType: string, extraHeaders?: Record): void; /** * Serve HTML pages with security headers. */ export declare function servePageHtml(res: ServerResponse, filePath: string): void; //# sourceMappingURL=static-serve.d.ts.map