/// export interface Auth0ContextType { isAuthenticated: boolean; isAuthenticating: boolean; wasAuthenticated: boolean; getCurrentToken: () => Promise; currentUser?: { email: string; }; login: (afterLoginPath?: string) => void; logout: () => void; onAuthCallback: () => void; } declare const Auth0Context: import("react").Context; export default Auth0Context;