import { type WorkflowContext, type WorkflowResult } from './types.js'; export interface SendTransferInput { chainId: number; to: string; value: string; } export interface SendErc20TransferInput { chainId: number; token: string; to: string; amount: string; } export declare function sendTransfer(ctx: WorkflowContext, input: SendTransferInput): Promise; export declare function sendErc20Transfer(ctx: WorkflowContext, input: SendErc20TransferInput): Promise;