import { ChainId, Token } from '@uniswap/sdk-core';
import { ethers } from 'ethers';
export interface SwapV2Params {
    chainId: ChainId;
    exchange: string;
    token1: Token;
    token2: Token;
    amount: string;
    provider: ethers.providers.JsonRpcProvider;
    signer: ethers.Wallet;
    gasLimit?: number;
    maxFeePerGas?: string;
    maxPriorityFeePerGas?: string;
}
