/// import Auth0Context, { Auth0ContextType } from './Auth0Context'; export interface Auth0Config { audience: string; domain: string; clientId: string; callbackUrl: string; logoutUrl: string; renewalThreshold?: number; } export interface Props { children?: any; } export declare const CURRENT_AUTH0_USER_KEY = "CURRENT_AUTH0_USER"; export declare const AFTER_LOGIN_PATH_KEY = "AFTER_LOGIN_PATH"; declare function Auth0Provider({ children, ...rest }: Props & Auth0Config): JSX.Element; export { Auth0Context, Auth0ContextType }; export default Auth0Provider;