import type { LLMConfig, TTSConfig, ASRConfig } from '../../../api/types.js'; import type { CallConfig } from './free.js'; export interface AgentCallParams { toNumber: string; fromNumber: string; task: string; taskLang: string; llm: Partial; tts: Partial; asr: Partial; } export declare function buildAgentCallConfig(params: AgentCallParams): CallConfig; /** Interactive parameter collection for agent mode. */ export declare function collectAgentParams(opts: { to?: string; task?: string; taskLang?: string; }): Promise<{ toNumber: string; task: string; taskLang: string; }>;