import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; interface HIDDividerProps extends HIDComponentProps { } interface HIDDividerState { } /** * ### The API documentation of the HID Divider React component. Learn more about the properties and the API Methods. * */ export default class HIDDivider extends React.Component { render(): JSX.Element; } export {};