import type { IncomingMessage, ServerResponse } from "node:http"; import type { TalkSessionRegistry } from "../talk/session/registry.js"; import type { TalkSession } from "../talk/session/types.js"; /** Accept only bounded detection metadata. Unknown fields are rejected rather * than ignored so transcript or audio can never hitchhike into telemetry. */ export declare function recordInterruption(req: IncomingMessage, res: ServerResponse, session: TalkSession, registry: TalkSessionRegistry): Promise; //# sourceMappingURL=talk-interruption-api.d.ts.map