import { Breadcrumb } from '../types/ICommon'; export interface ActivePage { title: string; path: string; breadcrumbs: Breadcrumb[]; } export declare const useActivePage: (pathname: string) => ActivePage | null;