/** * Different list item types. * @public */ declare enum ListItemType { /** * Indicates the list item does not have any active feedback when item is pressed. * @public */ Inactive = "Inactive", /** * Indicates that the item is clickable via active feedback when item is pressed. * @public */ Active = "Active", /** * Enables detail button of the list item that fires detail-click event. * @public */ Detail = "Detail", /** * Enables the type of navigation, which is specified to add an arrow at the end of the items and fires navigate-click event. * @public */ Navigation = "Navigation" } export default ListItemType;