import * as React from 'react'; import '../../../index.scss'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface IHIDHeaderProps extends HIDComponentProps { /** position of header */ fixed?: true | false; /** JSX elements to be appended on the right side of the header */ rightMenuOptions?: any; /**callback when clicked on left nav menu*/ leftMenuCallback?: () => void; } export interface IHIDHeaderState { } /** * ### The API documentation of the HID Header React component. Learn more about the properties and the API Methods. * */ export default class HIDHeader extends React.Component { handleLeftMenuClick: () => void; render(): JSX.Element; }