import type { CurrencyAmount, Currency } from '@wicchain/sdk'; export interface BasePair { token0: Currency; token1: Currency; reserve0: CurrencyAmount; reserve1: CurrencyAmount; involvesToken: (token: Currency) => boolean; } //# sourceMappingURL=pair.d.ts.map