import { type Item as PageTreeItem, type Root as PageTreeRoot } from "fumadocs-core/page-tree"; export interface PageFooterItems { next?: PageTreeItem; previous?: PageTreeItem; } export declare const getPageFooterItems: (tree: PageTreeRoot, url: string) => PageFooterItems; /** * Previous/next page navigation shown at the bottom of docs pages. Replaces the * default fumadocs footer (bordered cards) with a borderless layout: a hairline * divider on top, a "Previous"/"Next" label, and the page title with a chevron. * The chevron sits in its own grid column so the label lines up with the title * text (not the chevron). Neighbors are resolved from the page tree by the * server page factory so static HTML and hydration receive identical data. */ export declare const PageFooter: ({ previous, next }: PageFooterItems) => import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=page-footer.d.ts.map