/** Strategy for committing transcriptions. */ export declare const TextToSpeechCommitStrategy: { readonly Manual: "manual"; readonly Vad: "vad"; }; export type TextToSpeechCommitStrategy = (typeof TextToSpeechCommitStrategy)[keyof typeof TextToSpeechCommitStrategy];