/** * 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 SocialProvider: { readonly Facebook: "facebook"; readonly Google: "google"; readonly Apple: "apple"; }; export type SocialProvider = typeof SocialProvider[keyof typeof SocialProvider]; export declare function instanceOfSocialProvider(value: any): boolean; export declare function SocialProviderFromJSON(json: any): SocialProvider; export declare function SocialProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): SocialProvider; export declare function SocialProviderToJSON(value?: SocialProvider | null): any; export declare function SocialProviderToJSONTyped(value: any, ignoreDiscriminator: boolean): SocialProvider;