import React from "react"; import { ProductData, VariantOptions } from "../Bundle"; interface ProductWithIndex { product: ProductData; index: number; } interface VariantSelectorModalProps { productsWithIndices: ProductWithIndex[]; isOpen: boolean; onClose: () => void; variantOptions?: VariantOptions; cta: { textColor: string; backgroundColor: string; }; primaryProductId?: string; variantId?: string; onVariantChange: (index: number, variantId: string) => void; handleAddToCart: (e: React.MouseEvent) => Promise; showOutOfStockVariants?: boolean; } declare const VariantSelectorModal: React.FC; export default VariantSelectorModal;