export default class ComboBoxData extends SelectData { /** * @inheritdoc */ addChild(displayObject: any): void; /** * @inheritdoc */ addChildAt(displayObject: any, index: any): void; /** * Sets whether the combobox should have autocomplete enabled or not * @access public * @param {boolean} enable - true if autocomplete should be enabled, false otherwise */ set autoComplete(arg: boolean); /** * Retrieves whether autocomplete is enabled or not for the combobox * @access public * @returns {boolean} true if autocomplete is enabled (by default or explicitly), false otherwise */ get autoComplete(): boolean; /** * Sets whether the combobox 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 combobox 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";