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