import type { BaseTokenType, HoldersMakerParams, HoldersMakerResult } from './types/holders-maker.js'; export declare function holdersMaker(params: HoldersMakerParams): Promise; /** * 获取刷持有人预估费用 */ export declare function estimateHoldersMakerCost(params: { holdersCount: number; buyAmountPerHolder: string; baseToken?: BaseTokenType; gasLimit?: number; gasPriceGwei?: number; }): { totalNativeCost: string; totalERC20Cost?: string; gasEstimate: string; batchCount: number; }; export type { HoldersMakerChain, HoldersMakerTradeType, BaseTokenType, HoldersMakerConfig, HoldersMakerParams, TransactionLayer, BatchResult, HoldersMakerResult, } from './types/holders-maker.js';