export interface SendArgs { fromAddress: string; toAddress: string; asset: string; amount: string; fee?: string; broadcastOverride?: boolean; } export interface SendOutput { txid: string; nodeUrl: string; } export declare function send(data: SendArgs): Promise; //# sourceMappingURL=send.d.ts.map