import type { ImgHTMLAttributes, FC } from "react"; interface ImageProps extends ImgHTMLAttributes { src: string; objectFitCover?: boolean; } export declare const ImageTag: FC; export default ImageTag;