import React from "react"; type LoyaltyGuestCTAProps = { cartSigninCTAMainText?: string; signinCTAButtonVisible?: boolean; guestLoyaltyPercentage: number; joinNowFunction: () => void; themeColor?: string; ctaButtonBackgroundColor?: string; ctaButtonTextColor?: string; primaryTextColor?: string; secondaryTextColor?: string; cartComponentsCornerType?: "rounded" | "sharp"; cartComponentsCornerRadius?: number; showCartLevelAltPay?: boolean; }; declare const LoyaltyGuestCTA: React.FC; export default LoyaltyGuestCTA;