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