interface EIP6963ProviderInfo { uuid: string; name: string; icon: string; rdns: string; } interface Props { showCoinbaseWallet?: boolean; showWalletConnect?: boolean; onWalletClick?: (wallet: { type: string; info?: EIP6963ProviderInfo; }) => void; className?: string; } declare const WalletList: import("svelte").Component; type WalletList = ReturnType; export default WalletList;