/** * useUser Hook * User profile and operations (API service) */ import type { User } from '@materi.ai/frame/core/types'; import type { UseUserOptions } from './types'; export declare const useUser: ({ onError }?: UseUserOptions) => { user: User; isLoading: boolean; error: Error; getUser: (userId: string) => Promise; updateUser: (updates: Partial) => Promise; }; export type { UseUserOptions } from './types'; //# sourceMappingURL=useUser.d.ts.map