import { Currency } from '@uniswap/sdk-core'; import { MixedRouteSDK } from '../entities/mixedRoute/route'; /** * Converts a route to a hex encoded path * @notice only supports exactIn route encodings * @param route the mixed path to convert to an encoded path * @param useMixedRouterQuoteV2 if true, uses the Mixed Quoter V2 encoding for v4 pools. By default, we do not set it. This is only used in SOR for explicit setting during onchain quoting. * @returns the exactIn encoded path */ export declare function encodeMixedRouteToPath(route: MixedRouteSDK, useMixedRouterQuoteV2?: boolean): string;