import type { Keplr } from '@keplr-wallet/types'; import type { CosmosTransaction } from 'rango-sdk/lib'; import type { TChainWallet } from '../types'; declare const getCosmosAccounts: (provider: Keplr, chainId: string) => Promise; declare const getCosmosConnectedWallets: (provider: Keplr, mapArray: TChainWallet[]) => Promise; declare const executeCosmosTransaction: (cosmosTx: CosmosTransaction, provider: Keplr) => Promise; export { getCosmosAccounts, executeCosmosTransaction, getCosmosConnectedWallets };