import { ERC20 } from '../../types'; export type Provider = { chainId: number; }; export type ERC20Pairs = ERC20Pair[]; export type ERC20Pair = [ERC20, ERC20]; export declare const generateERC20Pairs: (erc20Pair: ERC20Pair, commonRoutingERC20s: ERC20[]) => ERC20Pairs;