import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { GenerationConfig } from "./GenerationConfig"; import { PronunciationDictionaryLocator } from "./PronunciationDictionaryLocator"; import { RealtimeVoiceSettings } from "./RealtimeVoiceSettings"; export declare const WebsocketTtsClientMessageMulti: core.serialization.ObjectSchema; export declare namespace WebsocketTtsClientMessageMulti { interface Raw { text?: string | null; voice_settings?: RealtimeVoiceSettings.Raw | null; generation_config?: GenerationConfig.Raw | null; "xi-api-key"?: string | null; authorization?: string | null; flush?: boolean | null; pronunciation_dictionary_locators?: PronunciationDictionaryLocator.Raw[] | null; contextId?: string | null; close_context?: boolean | null; close_socket?: boolean | null; } }