import Big from 'big.js'; import { Blockchain, AppConfig } from '../types/config.js'; import { EthereumAssets, AvalancheAssets } from '../contexts/models.js'; import { JsonRpcProvider } from 'ethers'; type GetMaxTransferAmountParams = { currentBlockchain: Blockchain; currentAsset: string; balance: Big; assets: EthereumAssets | AvalancheAssets; provider: JsonRpcProvider; config: AppConfig; }; declare function getMaxTransferAmount({ currentBlockchain, balance, currentAsset, assets, provider, config, }: GetMaxTransferAmountParams): Promise; export { getMaxTransferAmount };