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