import { RawRoute } from "../core/getRoute"; import { Address } from "../../common/tokenList"; export interface RouteDetails { totalOut: bigint; totalOutFormatted: string; pathPercentages: number[]; pathCount: number; amountIn: bigint; amountInFormatted: string; swapTypes: number[]; tokenIn: Address; tokenOut: Address; tokenInData: any; tokenOutData: any; route: RawRoute; } export function getRouteDetails(route: RawRoute): Promise;