import React from "react"; import "./shared.scss"; import { LoyaltyDiscount } from "./Cart"; export declare const LoyaltyCtaProgressBar: () => React.JSX.Element; type LoyaltyAppliedCTAProps = { removeDiscount: () => Promise; themeColor?: string; primaryTextColor?: string; secondaryTextColor?: string; loyaltyDiscount: LoyaltyDiscount; showCartLevelAltPay?: boolean; }; declare const LoyaltyAppliedCTA: React.FC; export default LoyaltyAppliedCTA;