/** * Generate a reverse swap redeem script * * @param preimageHash hash of the preimage of the swap * @param claimPublicKey public key of the keypair needed for claiming * @param refundPublicKey public key of the keypair needed for refunding * @param timeoutBlockHeight at what block the HTLC should time out * * @returns redeem script */ declare const reverseSwapScript: (preimageHash: Uint8Array, claimPublicKey: Uint8Array, refundPublicKey: Uint8Array, timeoutBlockHeight: number) => Uint8Array; export default reverseSwapScript; //# sourceMappingURL=ReverseSwapScript.d.ts.map