/** * ENI BatchRouter — 批量卖出 * * Phase 2: 部署 BatchRouter 合约后启用 * 各钱包需提前 approve(BatchRouter, amount) */ import type { BatchSellParams, BatchSellResult } from './types.js'; /** * 内盘批量卖出 * BatchRouter 从各钱包 transferFrom 代币后执行 saleToken */ export declare function batchSellPortal(params: BatchSellParams): Promise; /** * 外盘 V2 批量卖出 */ export declare function batchSellV2(params: BatchSellParams & { path?: string[]; }): Promise;