export type ImageSize = {
    maxWidth: number | null;
    maxHeight: number | null;
};
export type ImageProps = {
    format: string;
    altText?: string;
    imageType: string;
    url: string;
};
declare class ProductImage {
    format: string;
    description?: string;
    type: string;
    url: string;
    size: ImageSize | null;
    constructor(img: ImageProps);
}
export default ProductImage;
