@roochnetwork/rooch-sdk-kit
Version:
Rooch SDK Kit
11 lines (10 loc) • 421 B
TypeScript
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 {};