import React from "react"; import { NavLink } from "react-router-dom"; export interface Props { id: string; classes?: string; hiddenTitle?: string; hiddenTitleId?: string; sections: Section[]; dataTestId: string; } export interface Section { linkComponent: typeof NavLink; title: string; url: string; isActive: boolean; } export declare const SectionNavigation: (props: Props) => React.JSX.Element;