import { FC } from 'react'; import { Wallet, WalletConnectorCore } from '@dynamic-labs/wallet-connector-core'; export interface WalletUpgradeFlowViewProps { wallets: Wallet[]; method: 'new' | 'existing'; onComplete?: () => void; onCancel?: () => void; } export declare const WalletUpgradeFlowView: FC;