import { DisperseParams, SweepParams, PairwiseTransferParams, PairwiseTransferResult, TransferResult } from './multi-hop-transfer-helpers.js'; export type { DisperseParams, SweepParams, PairwiseTransferParams, PairwiseTransferResult, TransferResult, } from './multi-hop-transfer-helpers.js'; export declare function disperse(params: DisperseParams): Promise; export declare function sweep(params: SweepParams): Promise; export declare function pairwiseTransfer(params: PairwiseTransferParams): Promise; /** @deprecated 使用 disperse 替代 */ export declare const disperseWithHops: typeof disperse; /** @deprecated 使用 sweep 替代 */ export declare const sweepWithHops: typeof sweep;