import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ElevenMultilingualV2RequestOutputFormat } from "./ElevenMultilingualV2RequestOutputFormat"; import { PronunciationDictionaryVersionLocator } from "./PronunciationDictionaryVersionLocator"; import { TtsVoiceSettings } from "./TtsVoiceSettings"; import { WebhookTarget } from "./WebhookTarget"; export declare const ElevenMultilingualV2Request: core.serialization.ObjectSchema; export declare namespace ElevenMultilingualV2Request { interface Raw { webhook?: WebhookTarget.Raw | null; text: string; voice: string; output_format?: ElevenMultilingualV2RequestOutputFormat.Raw | null; pronunciation_dictionary_locators?: PronunciationDictionaryVersionLocator.Raw[] | null; voice_settings?: TtsVoiceSettings.Raw | null; } }