import type { Root } from "fumadocs-core/page-tree"; export interface ResolveDocumentTitleOptions { pageTitle: string; pageUrl: string; tree: Root; } /** * Resolve the browser/SEO document `` for a docs page. Section landing * pages conventionally use `title: Overview`, which produces an identical, * meaningless title for every section. For those pages we substitute the parent * section label (e.g. "Channels") so tabs and search results are distinguishable. * The visible page heading and breadcrumb are unaffected. All other pages keep * their own title. */ export declare const resolveDocumentTitle: ({ pageTitle, pageUrl, tree, }: ResolveDocumentTitleOptions) => string; //# sourceMappingURL=document-title.d.ts.map