/** Audio codec options for the non-streaming /text-to-speech endpoint */ export declare const TextToSpeechOutputAudioCodec: { readonly Mp3: "mp3"; readonly Linear16: "linear16"; readonly Mulaw: "mulaw"; readonly Alaw: "alaw"; readonly Opus: "opus"; readonly Flac: "flac"; readonly Aac: "aac"; readonly Wav: "wav"; }; export type TextToSpeechOutputAudioCodec = (typeof TextToSpeechOutputAudioCodec)[keyof typeof TextToSpeechOutputAudioCodec];