/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.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 SignUpType: { readonly Basic: "basic"; readonly Admin: "admin"; readonly Social: "social"; readonly Facebook: "facebook"; readonly Google: "google"; readonly Apple: "apple"; }; export type SignUpType = typeof SignUpType[keyof typeof SignUpType]; export declare function instanceOfSignUpType(value: any): boolean; export declare function SignUpTypeFromJSON(json: any): SignUpType; export declare function SignUpTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignUpType; export declare function SignUpTypeToJSON(value?: SignUpType | null): any; export declare function SignUpTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): SignUpType;