import { Bitcoind, Json } from '../../types'; type SimulateRawTransactionParams = { bitcoind: Bitcoind; rawtxs?: Array; 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; export {};