/** * Call Processor * * End-to-end processing pipeline for a single voice call interaction: * incoming pre-processing -> flow check -> chatbot -> outgoing post-processing -> TwiML */ import type { FlowRegistry } from "../../flows/registry"; import type { TalkerDependencies } from "../../types"; /** * Process a call interaction and generate TwiML response */ export declare function processCall(deps: TalkerDependencies, registry: FlowRegistry, phoneNumber: string, speechResult: string, to: string): Promise;