/** * Base64-encoded audio of the translated speech. */ export interface RttAudioPayload { /** The message type identifier. */ messageType: "audio"; /** Base64-encoded audio data. */ data: string; /** Sample rate of the audio in Hz. */ sampleRate: number; }