import type { Breadcrumb } from '../PageContainer';
export interface ActivePage {
  title: string;
  path: string;
  breadcrumbs: Breadcrumb[];
}
export declare function useActivePage(): ActivePage | null;