export interface SidebarTabConfig { key: string; type: 'custom' | 'form'; label: string; icon: any; enabled?: boolean; component?: any; formConfig?: any[]; initialValues?: Record; onChange?: (values: any) => void; } export interface SidebarProps { tabs: SidebarTabConfig[]; styles?: any; } export declare const sidebarMock: SidebarProps;