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