import type { IncomingMessage, ServerResponse } from "node:http"; import type { RealtimeNoiseReduction } from "../shared/voice.js"; export interface TalkOpenRequest { browserInstanceId?: string; noiseReduction?: RealtimeNoiseReduction; } export declare function readTalkOpenRequest(req: IncomingMessage, res: ServerResponse): Promise; export declare function readTalkAudioProfile(req: IncomingMessage, res: ServerResponse): Promise; //# sourceMappingURL=talk-audio-profile.d.ts.map