import React from 'react';
export interface Props extends React.HTMLAttributes<HTMLImageElement> {
    img?: string;
}
export declare const ProductImage: ({ img, className, ...restProps }: Props) => React.JSX.Element;
export default ProductImage;
