import * as React from 'react'; import '../../../index.scss'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface IHIDNavItemProps extends HIDComponentProps { /**text for each item*/ navText: string; /**route name for each item*/ route: string; /**returns route name*/ callback: (routeName: any) => {}; } export interface IHIDNavItemState { } /** * ### The API documentation of the HID Nav Item React component. Learn more about the properties and the API Methods. * */ export default class HIDNavItem extends React.Component { handleItemClick: () => void; render(): JSX.Element; }