import { User } from '@auth0/auth0-spa-js'; import { Auth0ContextInterface } from './auth0-context'; /** * ```js * const { * // Auth state: * error, * isAuthenticated, * isLoading, * user, * // Auth methods: * getAccessTokenSilently, * getAccessTokenWithPopup, * getIdTokenClaims, * loginWithCustomTokenExchange, * exchangeToken, // deprecated - use loginWithCustomTokenExchange * loginWithRedirect, * loginWithPopup, * logout, * } = useAuth0(); * ``` * * Use the `useAuth0` hook in your components to access the auth state and methods. * * TUser is an optional type param to provide a type to the `user` field. */ declare const useAuth0: (context?: import("react").Context>) => Auth0ContextInterface; export default useAuth0; //# sourceMappingURL=use-auth0.d.ts.map