/** * Output quality of the generated audio. Must be one of: * 'standard' - standard output format, 128kbps with 44.1kHz sample rate. * 'high' - high quality output format, 192kbps with 44.1kHz sample rate and major improvements on our side. * 'ultra' - ultra quality output format, 192kbps with 44.1kHz sample rate and highest improvements on our side. * 'ultra_lossless' - ultra quality output format, 705.6kbps with 44.1kHz sample rate and highest improvements on our side in a fully lossless format. */ export declare const BodyCreatePodcastV1StudioPodcastsPostQualityPreset: { readonly Standard: "standard"; readonly High: "high"; readonly Highest: "highest"; readonly Ultra: "ultra"; readonly UltraLossless: "ultra_lossless"; }; export type BodyCreatePodcastV1StudioPodcastsPostQualityPreset = (typeof BodyCreatePodcastV1StudioPodcastsPostQualityPreset)[keyof typeof BodyCreatePodcastV1StudioPodcastsPostQualityPreset];