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