import React from 'react'; interface ManagementSidebarProps { currentView: 'kanban' | 'planning' | 'tasks' | 'files' | 'epics' | 'gantt'; onViewChange: (view: 'kanban' | 'planning' | 'tasks' | 'files' | 'epics' | 'gantt') => void; children?: React.ReactNode; } export declare const ManagementSidebar: React.FC; export {};