/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 TwoFactorState: { readonly ENABLED: "ENABLED"; readonly DISABLED: "DISABLED"; }; export type TwoFactorState = typeof TwoFactorState[keyof typeof TwoFactorState]; export declare function instanceOfTwoFactorState(value: any): boolean; export declare function TwoFactorStateFromJSON(json: any): TwoFactorState; export declare function TwoFactorStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TwoFactorState; export declare function TwoFactorStateToJSON(value?: TwoFactorState | null): any; export declare function TwoFactorStateToJSONTyped(value: any, ignoreDiscriminator: boolean): TwoFactorState;