import { AmmV2ExchangeBase } from './AmmV2ExchangeBase'; import { IBlockchainExplorer } from '../../explorer/IBlockchainExplorer'; import { Web3Client } from '../../clients/Web3Client'; export declare class UniswapV2Exchange extends AmmV2ExchangeBase { client: Web3Client; explorer: IBlockchainExplorer; name: string; config: any; factoryAddress: `0x${string}`; masterChefAddress: `0x${string}`; vaultAddress: any; constructor(client?: Web3Client, explorer?: IBlockchainExplorer); }