export interface TtsConversationalConfigOverrideConfig { /** Whether to allow overriding the model_id field. */ modelId?: boolean; /** Whether to allow overriding the voice_id field. */ voiceId?: boolean; /** Whether to allow overriding the supported_voices field. */ supportedVoices?: boolean; /** Whether to allow overriding the stability field. */ stability?: boolean; /** Whether to allow overriding the speed field. */ speed?: boolean; /** Whether to allow overriding the similarity_boost field. */ similarityBoost?: boolean; /** Whether to allow overriding the pronunciation_dictionary_locators field. */ pronunciationDictionaryLocators?: boolean; }