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