import type * as ElevenLabs from "../index"; /** * Server chunk containing encoded audio for a specific context and optional alignment metadata. */ export interface TextToDialogueWebsocketAudioChunkMulti { /** Base64-encoded audio bytes for the selected `output_format`. */ audio?: string; /** Present when `sync_alignment` query parameter is `true` and the model returned timing data for the chunk. */ alignment?: ElevenLabs.DialogueTextAlignment; /** Reserved for future use; currently unused by the server. */ normalizedAlignment?: ElevenLabs.DialogueTextAlignment; /** The context this audio chunk belongs to. */ contextId?: string; }