import { Bitcoind, Json } from '../../types'; type SendParams = { bitcoind: Bitcoind; outputs: Array; conf_target?: number; estimate_mode?: string; fee_rate?: number | string; options?: Json; }; /** * send [{"address":amount,...},{"data":"hex"},...] ( conf_target "estimate_mode" fee_rate options ) * * EXPERIMENTAL warning: this call may be changed in future releases. * Send a transaction. * */ export declare function send(params: SendParams): Promise; export {};