import type { TBTCWalletStore, TCosmosWalletStore, TEvmWalletStore, TSolWalletStore, TWalletStore } from '@/types'; declare const isEvmWallet: (walletData: TWalletStore, fromChainId?: number | null) => walletData is TEvmWalletStore; declare const isSolWallet: (walletData: TWalletStore, fromChainId?: number | null) => walletData is TSolWalletStore; declare const isCosmosWallet: (walletData: TWalletStore, fromChainId?: number | null) => walletData is TCosmosWalletStore; declare const isBTClikeWallet: (walletData: TWalletStore, fromChainId?: number | null) => walletData is TBTCWalletStore; export { isEvmWallet, isSolWallet, isCosmosWallet, isBTClikeWallet };