declare const IDENTITY_PROVIDERS: {
    readonly GOOGLE: "GOOGLE";
    readonly GITHUB: "GITHUB";
};
type IdentityProvider = (typeof IDENTITY_PROVIDERS)[keyof typeof IDENTITY_PROVIDERS];
export { IDENTITY_PROVIDERS, IdentityProvider };
export declare function getPopupUrl(url: string, nonce: string, source: string, provider: IdentityProvider): string;
//# sourceMappingURL=providers.d.ts.map