import type { CreateConnectorFn } from "wagmi"; import type { WalletList } from "./Wallet"; import { ConnectorsForWalletsParameters } from "./connectorsForWallets"; export declare function getDefaultWallets(parameters: ConnectorsForWalletsParameters): { connectors: CreateConnectorFn[]; wallets: WalletList; }; export declare function getDefaultWallets(): { wallets: WalletList; };