/** * 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 StringContentType: { readonly Unspecified: "Unspecified"; readonly Html: "Html"; readonly Markdown: "Markdown"; }; export type StringContentType = typeof StringContentType[keyof typeof StringContentType]; export declare function instanceOfStringContentType(value: any): boolean; export declare function StringContentTypeFromJSON(json: any): StringContentType; export declare function StringContentTypeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): StringContentType; export declare function StringContentTypeToJSON(value?: StringContentType | null): any;