export declare class MenuItem {
host: HTMLSlMenuItemElement;
menuItem: HTMLElement;
hasPrefix: boolean;
hasSuffix: boolean;
hasFocus: boolean;
type: 'default' | 'primary' | 'danger';
checked: boolean;
value: string;
disabled: boolean;
connectedCallback(): void;
setFocus(options?: FocusOptions): Promise;
removeFocus(): Promise;
componentWillLoad(): void;
handleSlotChange(): void;
handleBlur(): void;
handleFocus(): void;
handleMouseEnter(): void;
handleMouseLeave(): void;
render(): any;
}