export declare enum MechanismType { InApp = "InApp", Google = "Google", Apple = "Apple", MicrosoftAD = "MicrosoftAD" } export interface AuthMechanism { AuthMechanism: string; ClientId: string; ClientSecret: string; RedirectUri: string; Scope: string; }