export type Section = { name: string; links: { href: string; name: string; }[]; } | { name: string; links?: undefined; href: string; }; export declare const SidebarNav: ({ sections }: { sections: Section[]; }) => import("react/jsx-runtime").JSX.Element;