import React, { ImgHTMLAttributes } from 'react'; interface ImageWrapperProps extends Omit, 'src'> { src?: string | null; alt?: string; classNames?: string; entityType: string; } declare const Image: React.FC; export default Image;