import Big from 'big.js'; import { Blockchain, Asset } from '../types/config.js'; import { Maybe } from '@avalabs/core-utils-sdk'; import { Provider } from 'ethers'; /** * Fetch the account balances for the tokens. * @param blockchain network to get the balances on * @param tokens the list of contract tokens * @param deprected query the deprecated token balance instead of the regular */ declare function useGetTokenBalancesEVM(blockchain: Blockchain, tokens: Maybe>, provider: Provider, active: boolean, account: Maybe, deprecated?: boolean): { [key: string]: Big; } | undefined; export { useGetTokenBalancesEVM };