import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; interface HIDListProps extends HIDComponentProps { children: any; } interface HIDListState { } /** * ### The API documentation of the HID List React component. Learn more about the properties and the API Methods. * */ export default class HIDList extends React.Component { private getListComponent; private getMultipleComponent; render(): JSX.Element; } export {};