/**
 * Translation or transcription response when response_format was json
 */
export type AzureOpenAiAudioResponse = {
    /**
     * Translated or transcribed text.
     */
    text: string;
} & Record<string, any>;
//# sourceMappingURL=audio-response.d.ts.map