import type http from "node:http"; export interface WebChatRouteResult { status: number; body: unknown; contentType: "application/json" | "text/event-stream"; } export declare function handleWebChatRoute(request: http.IncomingMessage, root: string, url: URL): Promise;