/** * This interface describes a single dropdown menu item. */ export declare class DropdownItem { /** * The unique id of the item within the dropdown. */ itemId: string; /** * The text of the dropdown menu item. */ text: string; /** * Determines if the item is enabled or disabled. */ enabled: boolean; constructor(itemId: string, text: string); setText(text: string): void; setEnabled(enabled: boolean): void; }