/** * 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 StringFieldEditor: { readonly Input: "Input"; readonly Color: "Color"; readonly Markdown: "Markdown"; readonly Dropdown: "Dropdown"; readonly Html: "Html"; readonly Radio: "Radio"; readonly RichText: "RichText"; readonly Slug: "Slug"; readonly StockPhoto: "StockPhoto"; readonly TextArea: "TextArea"; }; export type StringFieldEditor = typeof StringFieldEditor[keyof typeof StringFieldEditor]; export declare function instanceOfStringFieldEditor(value: any): boolean; export declare function StringFieldEditorFromJSON(json: any): StringFieldEditor; export declare function StringFieldEditorFromJSONTyped(json: any, _ignoreDiscriminator: boolean): StringFieldEditor; export declare function StringFieldEditorToJSON(value?: StringFieldEditor | null): any;