import { Attributes, Component } from 'jinge'; export interface MenuItemAttrs { ripple?: boolean; disabled?: boolean; href?: string; to?: string; target?: string; active?: boolean; expand?: boolean; expanded?: boolean; } export declare class MenuItem extends Component { static template: string; ripple?: boolean; disabled?: boolean; href?: string; to?: string; target?: string; active?: boolean; expand?: boolean; expanded?: boolean; _Menu: { close: () => void; }; _tch: () => void; constructor(attrs: Attributes); handleClick(event: MouseEvent): void; triggerCloseMenu(): void; __afterRender(): void; }