import { RawRoute } from "../core/getRoute"; import { Address } from "../../common/tokenList"; export interface TotalAmountOutDetails { amountOut: bigint | undefined; amountOutFormatted: string | undefined; tokenIn: Address | undefined; tokenOut: Address | undefined; } export function getTotalAmountOut( route: RawRoute ): Promise;