import { Transaction } from './index'; import { ISigHashPreimage } from './types'; declare function prepareSighashPreimagePreSegwit(transaction: Transaction, inputIndex: number, prevOutScript: Uint8Array, sighashType: number): ISigHashPreimage; declare function getSigHashForTx(transaction: Transaction, inputIndex: number, prevOutScript: Uint8Array, sighashType: number): Uint8Array; export { prepareSighashPreimagePreSegwit, getSigHashForTx };