import { ProductBadge, ProductImage } from '@jetshop/core/types'; import React from 'react'; import { ImageBreakpointSizes } from '../Image/Image'; export interface ProductImageProps { image: ProductImage; badges?: ProductBadge[]; sizes?: ImageBreakpointSizes; aspect?: string; loadEagerly?: boolean; } declare const ProdImage: React.SFC; export default ProdImage;