import type { StealthTransferResult, StealthTransferSimpleParams } from './types/stealth-transfer.js'; export type { StealthTransferResult, StealthTransferSimpleParams } from './types/stealth-transfer.js'; /** * 隐秘转账(简化版) * - 原生模式:amount 按 parseEther 转 wei * - 代币模式:自动读取 ERC20.decimals(),按 parseUnits(amount, decimals) 转 wei * - 自动生成 hopCount 个中转地址,并通过 48.club Bundle 原子提交 */ export declare function stealthTransfer(params: StealthTransferSimpleParams): Promise;