import { type JSX } from 'react'; import type { SidebarProps } from './c3-navigation-v2.types'; /** * Sidebar navigation panel. Children are `SidebarNode[]`, typically sections. * Loose items (not wrapped in a section) are valid and behave as an implicit * untitled group at the top. */ export declare const C3Sidebar: ({ ariaLabel, children: nodes, isExpanded, onToggleExpanded, expandedWidth, collapsedWidth, linkComponent, labels, }: SidebarProps) => JSX.Element;