/** * Model to be used for speech to text. * * - **saaras:v3** (default, recommended): State-of-the-art model with flexible output formats. Supports multiple modes via the `mode` parameter: transcribe, translate, verbatim, translit, codemix. * * - **saaras:v4** (latest): Flexible output formats across all modes (transcribe, translate, verbatim, translit, codemix), supporting Global + Indian English and 22 Indic languages. */ export declare const SpeechToTextBatchModel: { readonly SaarasV3: "saaras:v3"; readonly SaarasV4: "saaras:v4"; }; export type SpeechToTextBatchModel = (typeof SpeechToTextBatchModel)[keyof typeof SpeechToTextBatchModel];