/** * Public health probe. The only route that bypasses auth — Fly's machine * health probe (and any upstream load balancer) hits it without secrets. * * - GET /health */ import type { IncomingMessage, ServerResponse } from "node:http"; import type { RouteContext } from "../route-context.js"; export declare function handle(req: IncomingMessage, res: ServerResponse, ctx: RouteContext): Promise; //# sourceMappingURL=health.d.ts.map