export default class RadioData extends InputTagData { constructor(displayObject: any, role: any, domIdPrefix: any); /** * Sets the value of the radio button * @access private * @param {String} value - value of the radio button */ set value(arg: string); /** * Retrieves the value of radio button * @access private */ get value(): string; /** * Sets the state of the radio button i.e. Checked/Unchecked * @access public * @param {boolean} value - true to check & false to uncheck */ set checked(arg: boolean); /** * Retrieves the state of the radio button * @access public */ get checked(): boolean; /** * Sets the size of the radio list * @access public * @param {boolean} value - Total no. of radio buttons in the list */ set size(arg: boolean); /** * Retrieves the size of the radio list * @access public */ get size(): boolean; /** * Sets the position of the radio button in the list * @access public * @param {boolean} value - psoition of the radio button in the list */ set position(arg: boolean); /** * Retrieves the position of the radio button from the list * @access public */ get position(): boolean; /** * @inheritdoc */ _onKeyDown(evt: any): void; /** * Event listener for change events * @access protected */ _onChange(): void; } import InputTagData from "./InputTagData";