export interface SidebarRoute { id: string; label: string; group: 'settings' | 'actions' | 'exit'; } export interface SidebarProps { routes: readonly SidebarRoute[]; activeRoute: string; dirtyByCategory: Record; onSelect: (id: string) => void; focused: boolean; } export declare function Sidebar({ routes, activeRoute, dirtyByCategory, onSelect, focused }: SidebarProps): JSX.Element; //# sourceMappingURL=Sidebar.d.ts.map