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