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