import React from "react"; import { freebieClaimInterface, Checkpoint } from "./Cart"; import { FreebieRewardContext } from "../../utils/freebieUtils"; interface FreebieClaimManagerProps { freebieProductsInCart: any[]; themeColor?: string; themeTextColor?: string; primaryTextColor?: string; addFreebieToCart?: (variantId: string, originalAllowedVariantIds?: string[], rewardContext?: FreebieRewardContext) => Promise; freebiesInCart: string[]; freebieClaimData?: freebieClaimInterface; cartCheckpoints?: Checkpoint[]; imageAspectSelector?: "square" | "portrait"; freebieCouponTemplates?: Checkpoint[]; isCartDrawerOpen?: boolean; } declare const FreebieClaimManager: React.FC; export default FreebieClaimManager;