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