import { type TokenOperation } from "./common/routingPlan.js";
export type TokenOperationNodeType = 'SOURCE' | 'PASSING_THROUGH' | 'MERGING' | 'FORKING' | 'DESTINATION';
export declare const toNodeType: (tokenOp: TokenOperation) => TokenOperationNodeType;
export declare const toAmountOutMinimum: (amountOut: bigint, slippageTolerance: number) => bigint;
export declare const fromTokenUnits: (tokenUnits: number, decimals: number) => bigint;
export declare const toTokenUnits: (tokenAmount: bigint, decimals: number) => number;
