import { ThumborSettingType } from '../../Common/types'; export declare type ProductImagePropsType = { URLs: string[]; identifier: string; alt: string; thumborSetting: ThumborSettingType; redirect: { href: string; as: string; }; classes: { productImageContainerClassName: string; productImageClassName: string; }; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; }; declare const ProductImage: ({ URLs, identifier, thumborSetting, redirect, alt, classes, lazyLoadedImage, widthImage, heightImage, }: ProductImagePropsType) => JSX.Element; export default ProductImage;