import { IPairConstructor, Pair } from './Pair'; import { BigNumberJS } from '../BigNumberJS'; import { BaseToken } from './BaseToken'; export interface IERC20Constructor { address: string; name: string; symbol: string; image: string; decimals: number; price: string; pair: IPairConstructor | null; } export declare class ERC20 extends BaseToken { readonly address: string; readonly name: string; readonly symbol: string; readonly image: string; readonly decimals: number; readonly price: BigNumberJS; readonly pair: Pair | null; constructor({ address, name, symbol, image, decimals, price, pair, }: IERC20Constructor); }