import { RawRoute } from "../core/getRoute"; import { Address } from "../../common/tokenList"; export interface TotalAmountInDetails { amountIn: bigint | undefined; amountInFormatted: string | undefined; tokenIn: Address | undefined; tokenOut: Address | undefined; } export function getTotalAmountIn( route: RawRoute ): Promise;