import React from "react"; export declare type MetaImgProps = { imgClass?: string; imgSrc?: string; imgAlt?: string; testId?: string; imgNode?: ((intendedClass: string) => React.ReactNode) | React.ReactNode; }; export declare type ImgProps = Omit; export declare function Img({ imgNode, imgSrc, imgAlt, testId, imgClass, }: MetaImgProps): JSX.Element;