/** * Mode of operation for saaras:v3 model. * * Example audio: 'मेरा फोन नंबर है 9840950950' * * - **transcribe** (default): Standard transcription in the original language with proper formatting and number normalization. * - Output: `मेरा फोन नंबर है 9840950950` * * - **translate**: Translates speech from any supported Indic language to English. * - Output: `My phone number is 9840950950` * * - **verbatim**: Exact word-for-word transcription without normalization, preserving filler words and spoken numbers as-is. * - Output: `मेरा फोन नंबर है नौ आठ चार zero नौ पांच zero नौ पांच zero` * * - **translit**: Romanization - Transliterates speech to Latin/Roman script only. * - Output: `mera phone number hai 9840950950` * * - **codemix**: Code-mixed text with English words in English and Indic words in native script. * - Output: `मेरा phone number है 9840950950` */ export declare const Mode: { readonly Transcribe: "transcribe"; readonly Translate: "translate"; readonly Verbatim: "verbatim"; readonly Translit: "translit"; readonly Codemix: "codemix"; }; export type Mode = (typeof Mode)[keyof typeof Mode];