import React from 'react'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface ImgProps extends React.HTMLAttributes { } declare const Img: { (props: ImgProps): JSX.Element; title: string; icon: JSX.Element; propsDef: PropsTypes[]; style: boolean; }; export default Img;