export declare type ManagedIdentityProvider = 'aad' | 'facebook' | 'github' | 'google' | 'twitter'; export interface IdentityProviderInfo { id: T; name: string; } /** * Identity Providers managed by Azure Static Web Apps service */ export declare const managedIdentityProviders: Record>;