export default class RadioGroupData extends SelectData { /** * 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; /** * 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; } import SelectData from "./SelectData";