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