/** * Interim transcription of the source audio. */ export interface RttPartialTranscriptPayload { /** The message type identifier. */ messageType: "partial_transcript"; /** Partial transcription text. */ text: string; }