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