import { TIDContextState } from './TIDContext';
/**
 * This hook will allow you to access all functions and properties available in the TIDProvider
 * Functions and properties available:
 * * handleCallback
 * * getAccessTokenSilently
 * * getTokens
 * * loginWithRedirect
 * * logout
 * * isAuthenticated
 * * isLoading
 * * user
 * * error
 * @return {TIDContextState}
 */
declare const useAuth: () => TIDContextState;
export default useAuth;
