import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; interface HIDListItemProps extends HIDComponentProps { /**icon for the List*/ icon?: object; } interface HIDListItemState { } /** * ### The API documentation of the HID List Item React component. Learn more about the properties and the API Methods. * */ export default class HIDListItem extends React.Component { private getListItemComponent; private getListWithIcon; private getListWithoutIcon; render(): JSX.Element; } export {};