import { HTMLAttributes } from 'react';
export interface SidebarMenuItemProps extends HTMLAttributes {
/**
* Whether the menu item is selected.
* @default false
* @example true
*/
selected?: boolean;
}
export declare const SidebarMenuItem: import('react').ForwardRefExoticComponent>;