import { SidebarMenuProps } from './types'; export declare const useSidebarMenu: (props: SidebarMenuProps) => { context: { isSelected: (item: import('./types').SidebarMenuItemProps) => boolean; onClick: (item: import('./types').SidebarMenuItemProps) => import('react').MouseEventHandler; isExpanded: boolean; setIsExpanded: (newIsExpanded: boolean) => void; }; isExpanded: boolean; };