import * as React from "react";
import type { Breadcrumb } from "../PageContainer";
export interface ActivePage {
    title: string;
    path: string;
    sourcePath: string;
    breadcrumbs: Breadcrumb[];
    pageHeader?: React.ReactNode;
}
export declare function useActivePage(): ActivePage | null;
