import * as React from 'react'; import '../../../index.scss'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface HIDProgressBarProps extends HIDComponentProps { } export interface HIDProgressBarState { className: string; } /** * ### The API documentation of the HID ProgressBar React component. Learn more about the properties and the API Methods. * */ export default class HIDProgressBar extends React.Component { state: HIDProgressBarState; render(): JSX.Element; }