import type { ZilMateVoiceEvent } from './types.js'; export type CascadedVoiceSessionOptions = { sessionId?: string; audio: AsyncIterable; onEvent?: (event: ZilMateVoiceEvent) => void; onAudio?: (chunk: Uint8Array) => void; onUserTranscript: (text: string) => Promise | string | void; onUserSpeaking?: () => void; }; export declare function speakWithDeepgram(text: string, options?: Pick): Promise<{ audioBytes: number; }>; export declare function startCascadedVoiceSession(options: CascadedVoiceSessionOptions): Promise<{ sessionId: string; }>; //# sourceMappingURL=cascade.d.ts.map