import type { IncomingMessage, ServerResponse } from 'node:http'; export type RequestHandler = (req: IncomingMessage, res: ServerResponse, next: () => void) => void; /** * Create Bearer token auth middleware. * /health bypasses auth. All other routes require valid Bearer token. */ export declare function createAuthMiddleware(expectedToken: string): RequestHandler; //# sourceMappingURL=auth.d.ts.map