import React from "react"; type ProductRecCardProps = { product: any; addCartItem: (product: any, quantity?: number, triggeredFrom?: string, freebieReplace?: boolean, productHandle?: string) => Promise; productRecsCtaButtonText?: string; ctaButtonBackgroundColor?: string; ctaButtonTextColor?: string; primaryTextColor?: string; secondaryTextColor?: string; showVariantSelectionDropdownInProductRecs?: boolean; layout?: "horizontal" | "vertical"; cartComponentsCornerType?: "rounded" | "sharp"; cartComponentsCornerRadius?: number; isVerticalList?: boolean; backgroundColor?: string; tertiaryColor?: string; tertiaryTextColor?: string; }; declare const _default: React.NamedExoticComponent; export default _default;