import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { PydanticPronunciationDictionaryVersionLocator } from "./PydanticPronunciationDictionaryVersionLocator"; import { SupportedVoice } from "./SupportedVoice"; import { TtsConversationalModel } from "./TtsConversationalModel"; export declare const TtsConversationalConfigOverride: core.serialization.ObjectSchema; export declare namespace TtsConversationalConfigOverride { interface Raw { model_id?: TtsConversationalModel.Raw | null; voice_id?: string | null; supported_voices?: SupportedVoice.Raw[] | null; stability?: number | null; speed?: number | null; similarity_boost?: number | null; pronunciation_dictionary_locators?: PydanticPronunciationDictionaryVersionLocator.Raw[] | null; } }