export default class TabListData extends CompositeData { constructor(displayObject: any, role: any, domIdPrefix: any); /** * hierarchical level of the tabs within other structures * @access public * @param {Number} val - aria-level is an integer greater than or equal to 1 */ set level(arg: number); /** * hierarchical level of the tabs within other structures * @access public * @param {Number} val - aria-level is an integer greater than or equal to 1 */ get level(): number; /** * @access public * @param {boolean} val - true if more than one tab in the tablist may be selected at a time. * false if only one tab can be selected. */ set multiselectable(arg: boolean); /** * @access public * @param {boolean} val - true if more than one tab in the tablist may be selected at a time. * false if only one tab can be selected. */ get multiselectable(): boolean; /** * Sets the orientation of tablist * @access public * @param {String} str - "horizontal" for a horizontal tablist, "vertical" for a vertical tablist */ set orientation(arg: string); /** * Retrieves the orientation of tablist * @access public * @returns {String} str "horizontal" for a horizontal tablist, * "vertical" for a vertical tablist */ get orientation(): string; /** * @inheritdoc */ _onKeyDown(e: any): void; } import CompositeData from "./CompositeData";