import { Bitcoind } from '../../types.js';
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<any>;
export {};
//# sourceMappingURL=decode-raw-transaction.d.ts.map