import { Trade } from '@uniswap/router-sdk'; import { Currency, TradeType } from '@uniswap/sdk-core'; import { SwapCallParamsExactInput, SwapCallParamsExactInputSingle, SwapCallParamsExactOutput, SwapCallParamsExactOutputSingle } from '../UniswapV3'; export declare const getV3SwapCallParamsFromTrade: (trade: Trade, options: any) => { params: SwapCallParamsExactInputSingle; value: string; } | { params: SwapCallParamsExactOutputSingle; value: string; } | { params: SwapCallParamsExactInput; value: string; } | { params: SwapCallParamsExactOutput; value: string; };