declare global {
    namespace Chance {
        interface Chance {
            auth0(): {
                tenantId: () => string;
                domain: () => string;
                clientId: () => string;
                protocol: () => (typeof PROTOCOLS)[number];
            };
        }
    }
}
declare const PROTOCOLS: readonly ["oidc-basic-profile", "oidc-implicit-profile", "oauth2-device-code", "oauth2-resource-owner", "oauth2-resource-owner-jwt-bearer", "oauth2-password", "oauth2-access-token", "oauth2-refresh-token", "oauth2-token-exchange", "oidc-hybrid-profile", "samlp", "wsfed", "wstrust-usernamemixed"];
export declare const auth0: (chance: Chance.Chance) => {
    tenantId: () => string;
    domain: () => string;
    clientId: () => string;
    protocol: () => "oidc-basic-profile" | "oidc-implicit-profile" | "oauth2-device-code" | "oauth2-resource-owner" | "oauth2-resource-owner-jwt-bearer" | "oauth2-password" | "oauth2-access-token" | "oauth2-refresh-token" | "oauth2-token-exchange" | "oidc-hybrid-profile" | "samlp" | "wsfed" | "wstrust-usernamemixed";
};
export {};
//# sourceMappingURL=auth0.d.ts.map