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