/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const ImageFormat: { readonly Avif: "AVIF"; readonly Bmp: "BMP"; readonly Gif: "GIF"; readonly Jpeg: "JPEG"; readonly Png: "PNG"; readonly Tga: "TGA"; readonly Tiff: "TIFF"; readonly Webp: "WEBP"; }; export type ImageFormat = typeof ImageFormat[keyof typeof ImageFormat]; export declare function instanceOfImageFormat(value: any): boolean; export declare function ImageFormatFromJSON(json: any): ImageFormat; export declare function ImageFormatFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ImageFormat; export declare function ImageFormatToJSON(value?: ImageFormat | null): any;