import React from "react"; import { BundleProps } from "./Bundle"; declare global { interface Window { ytComboBundle?: { bundle: BundleProps["bundle"]; addToCart: (selectedItemsSubtotal: number, variantIds?: string[], finalBundlePrice?: number, variantIdPriceMap?: { variantId: string; price: number; }[]) => Promise; selectedVariants: Record; } | undefined; } } import "./bundle.scss"; declare const ComboBundle: React.FC; export default ComboBundle;