import { AuthenticationConfiguration } from '../types'; export declare const useAuth: (authConfig: AuthenticationConfiguration | undefined) => { authToken: string | null; isAuthenticated: boolean; login: () => void; refreshAccessToken: () => Promise; alwaysUseResourceRequestProxy: boolean; };