import { Dispatch, SetStateAction } from 'react'; import { AuthMode } from '@dynamic-labs/types'; import { IDynamicContext } from '../types'; export type UseDynamicContext = Pick & { setShowAuthFlow: Dispatch>; /** * @deprecated Use removeWallet instead */ handleUnlinkWallet: (walletId: string) => void; setAuthMode: (value: AuthMode) => void; authMode: AuthMode; }; export declare const useDynamicContext: () => UseDynamicContext;