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