import { Currency, Price, Token } from "@onyxcoindev/sdk-core-test"; import { Route as V3RouteSDK, Pool } from "@onyxcoindev/pool-sdk-test"; import { Protocol } from "../constants"; export interface IRoute { protocol: Protocol; pools: TPool[]; path: Token[]; midPrice: Price; input: TInput; output: TOutput; } export declare class RouteV3 extends V3RouteSDK implements IRoute { readonly protocol: Protocol; readonly path: Token[]; constructor(v3Route: V3RouteSDK); }