import { PropsWithChildren } from 'react'; export type ContentNavigationItemProps = PropsWithChildren<{ /** * ID of the section to set to active */ id: string; /** * Custom observer options settings */ options?: IntersectionObserverInit; }>; export declare const ContentNavigationItem: ({ id, options, children }: ContentNavigationItemProps) => import("react/jsx-runtime").JSX.Element;