import React from "react"; type ProductRecListProps = { products: any[]; addCartItem: (product: any, quantity?: number, triggeredFrom?: string, freebieReplace?: boolean, productHandle?: string) => Promise; productRecsCtaButtonText?: string; ctaButtonBackgroundColor?: string; ctaButtonTextColor?: string; productRecsTitleText?: string; themeColor?: string; primaryTextColor?: string; secondaryTextColor?: string; showVariantSelectionDropdownInProductRecs?: boolean; variant?: "scroll" | "carousel" | "vertical"; cardLayout?: "horizontal" | "vertical"; cartComponentsCornerType?: "rounded" | "sharp"; cartComponentsCornerRadius?: number; backgroundSubdued?: string; backgroundColor?: string; tertiaryColor?: string; tertiaryTextColor?: string; }; declare const ProductRecList: React.FC; export default ProductRecList;