import { ContentNavigationContextValue } from '../../context/content-navigation-context'; export type ContentNavigationConsumerProps = { /** * Custom renderer implementation */ render: (val: { activeId: ContentNavigationContextValue['activeId']; }) => JSX.Element; }; export declare const ContentNavigationConsumer: ({ render }: ContentNavigationConsumerProps) => JSX.Element;