/** * EIP-7702 换手刷量 */ import type { TradeType, EIP7702Config } from './types.js'; import type { SwapVolumeSignResult } from './volume-helpers.js'; /** 生成换手刷量签名 */ export declare function makeVolumeWithSwap(params: { sellerPrivateKey: string; buyerPrivateKey: string; tokenAddress: string; tokenDecimals?: number; sellAmount: string; hopCount?: number; tradeType?: TradeType; routerAddress?: string; fee?: number; config?: EIP7702Config; }): Promise;