import { Bitcoind } from '../../types'; type DecodeRawTransactionParams = { bitcoind: Bitcoind; hexstring: string; iswitness?: boolean; }; /** * decoderawtransaction "hexstring" ( iswitness ) * * Return a JSON object representing the serialized, hex-encoded transaction. * */ export declare function decodeRawTransaction(params: DecodeRawTransactionParams): Promise; export {};