import { type ISwapResponse } from "./common/interfaces.js"; import { type IRoutingPlan } from "./common/routingPlan.js"; export declare const parse: (swapResponse: ISwapResponse) => IRoutingPlan; export declare const printRoutingPlan: (routingPlan: IRoutingPlan) => void;