import React from 'react'; import type { INavigationPage } from './PageNavigator'; interface IPageSectionProps { pageKey: string; label: string; badge?: string; visible?: boolean; noWrapper?: boolean; updatePagesConfig?: (page: INavigationPage) => void; } export declare class PageSection extends React.Component { constructor(props: IPageSectionProps); componentDidUpdate(prevProps: IPageSectionProps): void; render(): JSX.Element; } export {};