import { UiWallet, UiWalletAccount } from '@wallet-standard/react'; import { SolanaCluster } from '@wallet-ui/core'; import React from 'react'; export interface WalletUiAccountInfo { account: UiWalletAccount; accountKeys: string[]; cluster: SolanaCluster; wallet: UiWallet | undefined; } export interface WalletUiAccountState extends Omit { account: UiWalletAccount | undefined; setAccount: React.Dispatch>; } export declare const WalletUiAccountContext: React.Context; //# sourceMappingURL=wallet-ui-account-context.d.ts.map