import { ReactElement } from 'react'; import { ContentHeaderProps } from '../ContentHeader'; import { FilterAreaProps } from '../FilterArea'; import { TabProps } from '../Tab'; export interface SectionProps { /** * Additional style for the section container. */ className?: string; /** * Accept `` component from `mezzanine`. * Other components will trigger a warning. */ contentHeader?: ReactElement; /** * Accept `` component from `mezzanine`. * Other components will trigger a warning. */ filterArea?: ReactElement; /** * Accept `` component from `mezzanine`. * Other components will trigger a warning. */ tab?: ReactElement; } /** * The react component for `mezzanine` section. */ declare const Section: import("react").ForwardRefExoticComponent>; export default Section;