import { default as React, HTMLAttributes } from 'react'; export interface ProductCardProps extends HTMLAttributes { /** * Sets a border to the component. */ bordered?: boolean; /** * Sets the component's size. */ variant?: 'wide' | 'default'; /** * Enables a outOfStock status. */ outOfStock?: boolean; /** * ID to find this component in testing tools (e.g.: cypress, * testing-library, and jest). */ testId?: string; } declare const ProductCard: React.ForwardRefExoticComponent>; export default ProductCard; //# sourceMappingURL=ProductCard.d.ts.map