import { getBreadcrumbItems } from "fumadocs-core/breadcrumb"; type PageTreeRoot = Parameters[1]; interface PageBreadcrumbProps { tree: PageTreeRoot; url: string; } /** * Server-rendered breadcrumb. fumadocs' `` derives items from * `usePathname()`, which is empty during static prerender, so it mounts only on * hydration and drops the title. Computing items from the page URL keeps it in * the static HTML. Markup mirrors fumadocs' default options, so output is * unchanged. */ export declare const PageBreadcrumb: ({ tree, url }: PageBreadcrumbProps) => import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=page-breadcrumb.d.ts.map