import { BigNumberJS } from '../BigNumberJS'; import { BaseToken } from './BaseToken'; export interface IPairConstructor { address: string; token0: string; token1: string; reserve0: string; reserve1: string; totalSupply: string; price: string; apr: string | null; } export declare class Pair extends BaseToken { readonly address: string; readonly token0: string; readonly token1: string; readonly reserve0: BigNumberJS; readonly reserve1: BigNumberJS; readonly totalSupply: BigNumberJS; readonly price: BigNumberJS; readonly apr: BigNumberJS | null; constructor({ address, token0, token1, reserve0, reserve1, totalSupply, price, apr, }: IPairConstructor); }