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