import type * as ElevenLabs from "../index"; /** * Response model for multichannel speech-to-text transcription. */ export interface MultichannelSpeechToTextResponseModel { /** List of transcripts, one for each audio channel. Each transcript contains the text and word-level details for its respective channel. */ transcripts: ElevenLabs.SpeechToTextChunkResponseModel[]; /** The transcription ID of the response. */ transcriptionId?: string; }