export interface TextToSpeechResponse { request_id?: string | undefined; /** The output audio files in WAV format, encoded as base64 strings. Each string corresponds to one of the input texts. */ audios: string[]; }