import React from "react"; type LoyaltyApplyCTAProps = { loyaltyIcon?: string; discountAmountOff: number; pointsToBeUsed: number; applyDiscount: () => Promise; themeColor?: string; primaryTextColor?: string; redemptionMinimumOrderValue?: number; redemptionMinimumOrderValueStatus?: boolean; coinName?: string; showCartLevelAltPay?: boolean; }; declare const LoyaltyApplyCTA: React.FC; export default LoyaltyApplyCTA;