export default class OptionData extends AccessibilityObject { /** * @inheritdoc */ addChild(): void; /** * @inheritdoc */ addChildAt(): void; /** * Sets the position in the current set of items * @access public * @param {Number} num - One based index for the position in the current * set of items. Or undefined to clear the field */ set positionInSet(arg: number); /** * Retrieves the position in the current set of items * @access public * @returns {Number} One based index for the position in the current set of items */ get positionInSet(): number; /** * Sets the number of items in the current set of items * @access public * @param {Number} num - Number of items in the current set. Or undefined to clear the field */ set setSize(arg: number); /** * Retrieves the number of items in the current set of items * @access public * @returns {Number} the number of items in the current set of items */ get setSize(): number; /** * Sets value used to identify the option * @access public * @param {String} str - value to identify the option */ set value(arg: string); /** * Retrieves the value that identifies the option * @access public * @returns {String} value to identify the option */ get value(): string; } import AccessibilityObject from "./AccessibilityObject";