export interface INavigationPage { key: string; label: string; visible?: boolean; badge?: string; } export declare class PageNavigationState { static currentPageKey: string; static pages: INavigationPage[]; static reset(): void; static setCurrentPage(key: string): void; static registerPage(page: INavigationPage): void; }