import { AnchorHTMLAttributes } from 'react';
export interface SubMenuItemProps extends AnchorHTMLAttributes {
/**
* If `true`, the item will be selected.
* @default false
* @example true
*/
selected?: boolean;
/**
* If `true`, the item will be disabled.
* @default false
* @example true
*/
disabled?: boolean;
}
export declare const SubMenuItem: import('react').ForwardRefExoticComponent>;