/** * 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 TranslationStatus: { readonly Translated: "Translated"; readonly LanguageNotSupported: "LanguageNotSupported"; readonly NotTranslated: "NotTranslated"; readonly NotConfigured: "NotConfigured"; readonly Unauthorized: "Unauthorized"; readonly Failed: "Failed"; }; export type TranslationStatus = typeof TranslationStatus[keyof typeof TranslationStatus]; export declare function instanceOfTranslationStatus(value: any): boolean; export declare function TranslationStatusFromJSON(json: any): TranslationStatus; export declare function TranslationStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): TranslationStatus; export declare function TranslationStatusToJSON(value?: TranslationStatus | null): any;