/**
* Class for role objects that use the li HTML tag.
*/
export default class ListItemData extends SectionData {
/**
* Sets the value of the list item
* @access public
* @param {number} value - number representing the value of the list item
*/
set value(arg: number);
/**
* Retrieves the value of the list item
* @access public
* @returns {number} number representing the value of the list item, undefined
* if this field is unset
*/
get value(): number;
}
import SectionData from "./SectionData";