import { SushiswapV1 } from '../sushiswap/v1'; import { UniswapV2 } from '../uniswap/v2'; import { UniswapV3 } from '../uniswap/v3'; export declare const WETH_ADDRESS = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"; export declare const TOKEN_0 = "token0"; export declare const TOKEN_1 = "token1"; export declare const SUSHISWAP_V1 = "SUSHISWAP_V1"; export declare const UNISWAP_V2 = "UNISWAP_V2"; export declare const UNISWAP_V3 = "UNISWAP_V3"; export declare const DEXES: string[]; export declare const DEX_SERVICES: { SUSHISWAP_V1: typeof SushiswapV1; UNISWAP_V2: typeof UniswapV2; UNISWAP_V3: typeof UniswapV3; };