export default class GridCellData extends CellData { /** * Sets whether the grid cell 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 grid cell is editable or not * @access public * @returns {boolean} true if the element should be read only, false for read and editable */ get readOnly(): boolean; /** * Sets whether user input is required or not * @access public * @param {boolean} value - true if the element is required, false otherwise */ set required(arg: boolean); /** * Retrieves whether user input is required or not * @access public * @returns {boolean} true if the element is required, false otherwise */ get required(): boolean; /** * @access public * @param {boolean} value - true if the element is selected, false otherwise */ set selected(arg: boolean); /** * @access public * @returns {boolean} true if the element is selected, false otherwise */ get selected(): boolean; } import CellData from "./CellData";