import type { IncomingMessage, ServerResponse } from 'node:http'; /** * Match-and-handle dispatcher. Returns `true` when the request was * served (caller should stop walking its own route table); `false` * when the URL/method didn't match anything in this module. */ export declare function handleLlmApi(req: IncomingMessage, res: ServerResponse, url: URL): Promise; /** List API: keep header keys, mask secret-bearing values. */ export declare function redactExtraHeaders(headers: Record): Record; //# sourceMappingURL=llm-api.d.ts.map