/** * useAuth - Hook to access authentication state (v2) * Uses TagadaContext for auth state management */ import { AuthState } from '../../../react/types'; export declare function useAuth(): AuthState & { isInitialized: boolean; };