import { EvmAgentKit } from "../../agent"; import { Address } from "viem"; /** * Transfer ETH or ERC20 tokens to a recipient * @param agent EvmAgentKit instance * @param destination Recipient's address * @param amount Amount to transfer in token units * @param tokenAddress Optional ERC20 token address. If not provided, transfers ETH * @returns Transaction hash */ export declare function transfer(agent: EvmAgentKit, destination: Address, amount: number, tokenAddress?: Address): Promise
; //# sourceMappingURL=transfer.d.ts.map