import { Currency } from "@onyxcoindev/sdk-core-test"; import { Pool } from "@onyxcoindev/pool-sdk-test"; import { AlphaRouterConfig, RouteWithValidQuote } from "../routers/alpha-router"; import { SupportedRoutes } from "../routers/router"; import { CachedRoutes } from "../providers"; export type TPool = Pool; export declare const routeToTokens: (route: SupportedRoutes) => Currency[]; export declare const routeToPools: (route: SupportedRoutes) => TPool[]; export declare const poolToString: (pool: TPool) => string; export declare const routeToString: (route: SupportedRoutes) => string; export declare const routeAmountsToString: (routeAmounts: RouteWithValidQuote[]) => string; export declare const routeAmountToString: (routeAmount: RouteWithValidQuote) => string; export declare function shouldWipeoutCachedRoutes(cachedRoutes?: CachedRoutes, routingConfig?: AlphaRouterConfig): boolean;