export declare function useAuth(): {
    isAuthenticated: boolean;
    login: (token: string) => void;
    logout: () => void;
    userToken: string | null;
};
