UNPKG

@roochnetwork/rooch-sdk-kit

Version:
11 lines (10 loc) 421 B
import { Wallet } from '../../../wallet/wallet.js'; type WalletListProps = { wallets: Wallet[]; selectedWalletName?: string; onSelect: (wallet: Wallet) => void; walletStatus: Map<string, boolean>; isDetecting: boolean; }; export declare function WalletList({ wallets, selectedWalletName, onSelect, walletStatus, isDetecting, }: WalletListProps): import("react/jsx-runtime.js").JSX.Element; export {};