import { HTMLAttributes, default as React } from 'react'; export interface ProductCardImageProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Specifies the ProductCard image's aspect ratio. */ aspectRatio?: number; } declare const ProductCardImage: React.ForwardRefExoticComponent>; export default ProductCardImage; //# sourceMappingURL=ProductCardImage.d.ts.map