import * as React from 'react'; export interface ImgProps extends React.HTMLAttributes { [x: string]: unknown; ref?: React.Ref; shouldRender?: boolean; } export interface ImgRefCurrent { wrapper: HTMLImageElement | null; } export declare const Img: React.FC;