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