/** * useAuth Hook * Manages authentication state and operations (Shield service) */ import { User } from '@materi.ai/frame/core/types'; import type { UseAuthOptions } from './types'; export declare const useAuth: ({ onError, onSuccess }?: UseAuthOptions) => { user: User; isLoading: boolean; error: Error; setUser: import("react").Dispatch>; login: (email: string, password: string) => Promise; logout: () => Promise; }; export type { UseAuthOptions } from './types'; //# sourceMappingURL=useAuth.d.ts.map