export default class TabData extends AccessibilityObject { constructor(displayObject: any, role: any, domIdPrefix: any); /** * Sets the size of the tab in list * @access public * @param {number} value - Total number of tab buttons in the list */ set size(arg: number); /** * Retrieves the size of the tab list * @access public */ get size(): number; /** * Sets the position of the tab button in the list * @access public * @param {number} value - position of the tab button in the list */ set position(arg: number); /** * Retrieves the position of the tab button from the list * @access public */ get position(): number; /** * @access public * @param {string} value - Refers to the tabpanel element associated with the current tab. */ set controls(arg: string); /** * @access public * @returns {string} Refers to the tabpanel element associated with the current tab. */ get controls(): string; /** * @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; /** * @inheritdoc */ _onKeyDown(evt: any): void; } import AccessibilityObject from "./AccessibilityObject";