import { Maybe } from '@avalabs/core-utils-sdk'; import Big from 'big.js'; import { Blockchain, Asset } from '../types/config.js'; import { Provider } from 'ethers'; /** * Fetch the account balance for the token on Ethereum or Avalanche. * @param blockchain network to get the balances on * @param asset the contract token (skips fetch when not defined) * @param deprecated query the deprecated token balance instead of the regular */ declare function useGetTokenBalanceEVM(blockchain: Blockchain.AVALANCHE | Blockchain.ETHEREUM, asset: Maybe, provider: Provider, active: boolean, account: Maybe, deprecated?: boolean): Big | undefined; export { useGetTokenBalanceEVM };