import { Trade } from '@uniswap/router-sdk'; import { Currency, TradeType } from '@uniswap/sdk-core'; import { ChainId, MethodParameters, RouteWithValidQuote, SwapOptions } from '..'; export declare function buildTrade(tokenInCurrency: Currency, tokenOutCurrency: Currency, tradeType: TTradeType, routeAmounts: RouteWithValidQuote[]): Trade; export declare function buildSwapMethodParameters(trade: Trade, swapConfig: SwapOptions, chainId: ChainId): MethodParameters;