export type NavItem = { href: string; label: string; }; export declare const readNavItems: (navDataPath: string) => NavItem[]; export declare const upsertNavItem: (navDataPath: string, item: NavItem) => { changed: boolean; created: boolean; items: NavItem[]; };