import type { IncomingMessage, ServerResponse } from "node:http"; import type { TalkSession } from "../talk/session/types.js"; interface Options { send: (res: ServerResponse, status: number, body: unknown) => void; } export declare function handleTalkTranscript(req: IncomingMessage, res: ServerResponse, session: TalkSession, options: Options): Promise; export {}; //# sourceMappingURL=talk-transcript-api.d.ts.map