//#region src/utils/oauth.d.ts declare const standardProviders: readonly ["google", "github", "microsoft", "spotify", "facebook", "discord", "gitlab", "bitbucket", "linkedin", "apple", "x", "twitch"]; declare const sharedProviders: readonly ["google", "github", "microsoft", "spotify"]; declare const allProviders: readonly ["google", "github", "microsoft", "spotify", "facebook", "discord", "gitlab", "bitbucket", "linkedin", "apple", "x", "twitch"]; declare const publishableClientKeyNotNecessarySentinel = "__stack_public_client__"; /** * All provider types including custom OIDC. Standard providers are the * predefined set with first-class support; "custom_oidc" lets users bring * any OIDC-compliant identity provider (team plan+ only). */ declare const allProviderTypes: readonly ["google", "github", "microsoft", "spotify", "facebook", "discord", "gitlab", "bitbucket", "linkedin", "apple", "x", "twitch", "custom_oidc"]; type AllProviderType = typeof allProviderTypes[number]; type ProviderType = typeof allProviders[number]; type StandardProviderType = typeof standardProviders[number]; type SharedProviderType = typeof sharedProviders[number]; //#endregion export { AllProviderType, ProviderType, SharedProviderType, StandardProviderType, allProviderTypes, allProviders, publishableClientKeyNotNecessarySentinel, sharedProviders, standardProviders }; //# sourceMappingURL=oauth.d.ts.map