import { Bitcoind, Json } from '../../types.js';
type SendParams = {
    bitcoind: Bitcoind;
    outputs: Array<unknown>;
    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<any>;
export {};
//# sourceMappingURL=send.d.ts.map