/** This parameter controls text normalization with three modes - 'auto', 'on', and 'off'. When set to 'auto', the system will automatically decide whether to apply text normalization (e.g., spelling out numbers). With 'on', text normalization will always be applied, while with 'off', it will be skipped. For the 'eleven_flash_v2_5' model, text normalization can only be enabled with Enterprise plans. Defaults to 'auto'. */ export declare const TextToSpeechApplyTextNormalizationEnum: { readonly Auto: "auto"; readonly On: "on"; readonly Off: "off"; }; export type TextToSpeechApplyTextNormalizationEnum = (typeof TextToSpeechApplyTextNormalizationEnum)[keyof typeof TextToSpeechApplyTextNormalizationEnum];