export interface SidebarMenuItem { url: string; icon: string; label: string; children?: SidebarMenuItem[]; } export interface SidebarMenuGroup { group: boolean; label: string; children?: SidebarMenuItem[]; } export interface SidebarMenuProps { headerWidth?: "full" | "half"; theme: "light" | "dark" | "blue" | "orange"; menus: SidebarMenuGroup[]; isHideSidebar: boolean; iconPath?: string; title?: string; }