import { HostConfig } from "../host-config"; export declare class MenuItem { private _hostConfig?; private _element; private _value; private _iconUrl; private _isEnabled; private click; private updateCssClasses; readonly key: string; onClick?: (item: MenuItem) => void; constructor(key: string, value: string, iconUrl?: string); toString(): string; render(hostConfig?: HostConfig): HTMLElement; get value(): string; set value(newValue: string); get isEnabled(): boolean; set isEnabled(value: boolean); }