import { FeeAmount } from '@uniswap/v3-sdk'; import { ERC20 } from '../../types'; import { ERC20Pair } from './generateERC20Pairs'; type PoolIDs = PoolID[]; type PoolID = { erc20Pair: ERC20Pair; fee: FeeAmount; poolAddress: string; }; export declare const generatePossiblePoolsFromERC20Pair: (erc20Pair: ERC20Pair, commonRoutingERC20s: ERC20[], factoryAddress: string) => PoolIDs; export {};