export default class MenuItemCheckBoxData extends MenuItemData { /** * Sets whether the element is checked * @access public * @param {boolean} check - true if the element is checked, * false if the element is unchecked, mixed if the element * mixture of checked and unchecked values. */ set checked(arg: boolean); /** * Retrieves whether the element is checked * @access public * @returns {boolean} - true if the element is checked, * false if the element is unchecked, mixed if the element * mixture of checked and unchecked values. */ get checked(): boolean; /** * Sets whether the element is editable or not * @access public * @param {boolean} value - true if the element should be read only, false for read and editable */ set readOnly(arg: boolean); /** * Retrieves whether the element is editable or not * @access public * @returns {boolean} true if the element should be read only, false for read and editable */ get readOnly(): boolean; } import MenuItemData from "./MenuItemData";