/// export interface SideNavigationProps extends React.HTMLAttributes { title?: string; } export interface SideNavigationItemProps extends React.HTMLAttributes { href: string; label: string; } export interface SideNavigationContextType { currentItem: string; setItem: (id: string) => void; }