import { DashboardSidebarConfig, DashboardSidebarNestedGroupConfig } from './types.js'; export interface DashboardSidebarNestedProps { activePath: string; config: DashboardSidebarConfig; group: DashboardSidebarNestedGroupConfig; onBack: () => void; onNavigate: (href: string) => void; } /** Nested drill-in: Back + close, optional group header, nav stack. */ export declare function DashboardSidebarNested({ activePath, config, group, onBack, onNavigate }: DashboardSidebarNestedProps): import("react").JSX.Element;