import type { LiquidSwapTree } from '../../consts/Types'; declare enum Feature { ClaimCovenant = 0 } type ClaimCovenant = { assetHash: string; outputScript: Buffer; expectedAmount: number; }; type FeatureOption = { type: Feature; } & ClaimCovenant; declare const reverseSwapTree: (preimageHash: Uint8Array, claimPublicKey: Uint8Array, refundPublicKey: Uint8Array, timeoutBlockHeight: number, features?: FeatureOption[]) => LiquidSwapTree; export default reverseSwapTree; export { Feature }; export type { FeatureOption }; //# sourceMappingURL=ReverseSwapTree.d.ts.map