import type { NavigationNode } from "../versions/latest"; /** * Builds a map from pageId to slug from a navigation root node. * * This mirrors how FDR's slug table stores page → URL mappings and should be * used by both the server (when populating the slug table on publish) and the * CLI (when building the local "after" state for the missing-redirects check). * * Changelog entries are special-cased: they map to their parent changelog * node's slug rather than their own individual entry slug, because individual * changelog entries are rendered on the parent changelog page. */ export declare function buildPageIdToSlugMap(root: NavigationNode): Map; //# sourceMappingURL=buildPageIdToSlugMap.d.ts.map