export default class SpinButtonData extends RangeData { constructor(displayObject: any, role: any, domIdPrefix: any); /** * @inheritdoc */ addChild(): void; /** * @inheritdoc */ addChildAt(): void; /** * 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; /** * @inheritdoc */ _onKeyDown(evt: any): void; _onChange(evt: any): void; } import RangeData from "./RangeData";