import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const AdditionalFormatResponseModel: core.serialization.ObjectSchema<serializers.AdditionalFormatResponseModel.Raw, ElevenLabs.AdditionalFormatResponseModel>;
export declare namespace AdditionalFormatResponseModel {
    interface Raw {
        requested_format: string;
        file_extension: string;
        content_type: string;
        is_base64_encoded: boolean;
        content: string;
    }
}
