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