import { Token, Currency, Price } from '@pulsex/swap-sdk-core'; import { PairV1, PairV2 } from './pair'; export declare class RouteV1 { readonly pairs: PairV1[]; readonly path: Token[]; readonly input: TInput; readonly output: TOutput; constructor(pairs: PairV1[], input: TInput, output: TOutput); private _midPrice; get midPrice(): Price; get chainId(): number; } export declare class RouteV2 { readonly pairs: PairV2[]; readonly path: Token[]; readonly input: TInput; readonly output: TOutput; constructor(pairs: PairV2[], input: TInput, output: TOutput); private _midPrice; get midPrice(): Price; get chainId(): number; } //# sourceMappingURL=route.d.ts.map