import * as React from 'react'; import '../../../index.scss'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface IHIDSideNavProps extends HIDComponentProps { /** flag to open the drawer*/ open: true | false; /** default view of the drawer*/ defaultView: 'expand' | 'collapse'; } export interface IHIDSideNavState { } /** * ### The API documentation of the HID Side Nav React component. Learn more about the properties and the API Methods. * */ export default class HIDSideNav extends React.Component { state: IHIDSideNavState; render(): JSX.Element; }