import { default as React, HTMLAttributes } from 'react'; export interface ProductGridItemProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string; } declare const ProductGridItem: React.ForwardRefExoticComponent>; export default ProductGridItem; //# sourceMappingURL=ProductGridItem.d.ts.map