import type { WalletConfig } from '@example-react/wallets'; import type { WalletName } from '@web3-wallet/react'; export const WalletSelect = ({ walletConfigs, currentWalletName, switchCurrentWallet, }: { walletConfigs: WalletConfig[]; currentWalletName: WalletName; switchCurrentWallet: (walletName: WalletName) => void; }) => { return ( ); };