/** * This contains only setters/getters for SwitchData class. */ export default class SwitchData extends ButtonData { constructor(displayObject: any, role: any, domIdPrefix: any); /** * Sets whether the element is checked * @access public * @param {boolean} check - true if the element is checked, false otherwise */ set checked(arg: boolean); /** * Retrieves whether the element is checked * @access public * @returns {boolean} true if the element is checked, false otherwise */ get checked(): boolean; } import ButtonData from "./ButtonData";