import { Currency, CurrencyAmount } from '@uniswap/sdk-core'; import { SwapRoute } from '@uniswap/smart-order-router'; import { GetQuoteResult } from '../types/types'; export declare function transformSwapRouteToGetQuoteResult(type: 'exactIn' | 'exactOut', amount: CurrencyAmount, { quote, quoteGasAdjusted, route, estimatedGasUsed, estimatedGasUsedQuoteToken, estimatedGasUsedUSD, gasPriceWei, methodParameters, blockNumber, }: SwapRoute): GetQuoteResult;