import { BadgeStyle } from '../../../enums'; import { UIMenuItem } from './'; export declare class UIMenuCheckboxItem extends UIMenuItem { checked: boolean; private readonly checkedSprite; private readonly oncheckedChanged; readonly checkedChanged: import("../../../utils").ILiteEvent; constructor(text: string, check?: boolean, description?: string); setVerticalPosition(y: number): void; draw(): void; setRightBadge(badge: BadgeStyle): this; setRightLabel(text: string): this; }