import type { TWalletInfo } from './types'; import type { TWalletAddressesHistory } from '@/types'; declare const getWalletInfoByChainId: (chainId: number) => import("@/types").TChainsWithWalletsLink | undefined; declare const getWalletsByGroup: (walletAddressesHistory: TWalletAddressesHistory) => TWalletInfo; declare const convertAddressHistoryToConnectedWallets: (walletAddressesHistory: TWalletAddressesHistory) => { blockchain: "BTC" | "BCH" | "DOGE" | "THOR" | "BNB" | "COSMOS" | "LTC" | "KUJIRA" | "OSMOSIS" | "JUNO" | "AKASH" | "STARGAZE" | "PERSISTENCE" | "MARS" | "STRIDE"; addresses: string[]; chainId: number; }[]; declare const getHistoryAddressByChaindId: (walletAddressesHistory: TWalletAddressesHistory, chainId: number) => string | null; export { getWalletsByGroup, convertAddressHistoryToConnectedWallets, getHistoryAddressByChaindId, getWalletInfoByChainId };