import { Bitcoind, Json } from '../../types.js';
type SimulateRawTransactionParams = {
    bitcoind: Bitcoind;
    rawtxs?: Array<unknown>;
    options?: Json;
};
/**
 * simulaterawtransaction ( ["rawtx",...] {"include_watchonly":bool,...} )
 *
 * Calculate the balance change resulting in the signing and broadcasting of the given transaction(s).
 *
 */
export declare function simulateRawTransaction(params: SimulateRawTransactionParams): Promise<any>;
export {};
//# sourceMappingURL=simulate-raw-transaction.d.ts.map