/**
 * Umbraco Management API
 * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
 *
 * The version of the OpenAPI document: Latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface AllowedMediaTypeModel
 */
export interface AllowedMediaTypeModel {
    /**
     *
     * @type {string}
     * @memberof AllowedMediaTypeModel
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof AllowedMediaTypeModel
     */
    name: string;
    /**
     *
     * @type {string}
     * @memberof AllowedMediaTypeModel
     */
    description?: string | null;
    /**
     *
     * @type {string}
     * @memberof AllowedMediaTypeModel
     */
    icon?: string | null;
}
/**
 * Check if a given object implements the AllowedMediaTypeModel interface.
 */
export declare function instanceOfAllowedMediaTypeModel(value: object): value is AllowedMediaTypeModel;
export declare function AllowedMediaTypeModelFromJSON(json: any): AllowedMediaTypeModel;
export declare function AllowedMediaTypeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AllowedMediaTypeModel;
export declare function AllowedMediaTypeModelToJSON(json: any): AllowedMediaTypeModel;
export declare function AllowedMediaTypeModelToJSONTyped(value?: AllowedMediaTypeModel | null, ignoreDiscriminator?: boolean): any;
