//#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__"; type ProviderType = typeof allProviders[number]; type StandardProviderType = typeof standardProviders[number]; type SharedProviderType = typeof sharedProviders[number]; //#endregion export { ProviderType, SharedProviderType, StandardProviderType, allProviders, publishableClientKeyNotNecessarySentinel, sharedProviders, standardProviders }; //# sourceMappingURL=oauth.d.ts.map