export default class CompositeData extends AccessibilityObject { /** * Sets the currently active descendant of a composite widget * @access public * @param {createjs.DisplayObject} displayObject - DisplayObject that is the active descendant of this one. undefined to unset the field. */ set active(arg: createjs.DisplayObject); /** * Retrieves which DisplayObject is the current active descendant * @access public * @returns {createjs.DisplayObject} DisplayObject that is the current active descendant */ get active(): createjs.DisplayObject; _active: createjs.DisplayObject; /** * Retrieves the DOM id for the tranlated DisplayObject that is the active descendant. * @access public * @returns {String} id for the translated DisplayObject that is the active descendant */ get activeId(): string; } import AccessibilityObject from "./AccessibilityObject";