import { Token } from '../../currency'; /** * Computes a pair address * @param factoryAddress The Uniswap V2 factory address * @param tokenA The first token of the pair, irrespective of sort order * @param tokenB The second token of the pair, irrespective of sort order * @param initCodeHashManualOverride Override the init code hash used to compute the pool address if necessary * @returns The pair address */ export declare const computePoolAddress: ({ factoryAddress, tokenA, tokenB, initCodeHashManualOverride, }: { factoryAddress: string; tokenA: Token; tokenB: Token; initCodeHashManualOverride: string; }) => string;