import { BigNumber } from 'ethers'; import { ERC20TokenData } from '../types'; import ContractCache from './helpers/ContractCache'; declare class ERC20Token { #private; readonly id: string; readonly name: string; readonly symbol: string; readonly decimals: string; constructor(data: ERC20TokenData, contractCache: ContractCache, contractCacheKey: string); totalSupply(): Promise; } export default ERC20Token; //# sourceMappingURL=ERC20Token.d.ts.map