import { ReactNode } from 'react'; export type ContentNavigationContextEntry = { id: string; element: ReactNode; }; export type ContentNavigationContextRegisterFn = { (id: string, element: ReactNode): void; }; export type ContentNavigationContextRemoveFn = { (id: string): void; }; export type ContentNavigationSetActiveFn = { (id: string): void; }; export type ContentNavigationContextValue = { entries: ContentNavigationContextEntry[]; activeId: null | string; setActive: ContentNavigationSetActiveFn; register: ContentNavigationContextRegisterFn; remove: ContentNavigationContextRemoveFn; }; export declare const ContentNavigationContext: import("react").Context;