import { ImgHTMLAttributes } from 'react'; import { ImageTemplate } from '../../types'; interface ImgProps extends ImgHTMLAttributes { template?: ImageTemplate; } /** * **JSON-format type: image** * * @param template * @param props * @constructor */ declare function Img({ src, alt, template, ...props }: ImgProps): import("react/jsx-runtime").JSX.Element; export { Img };