import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; interface HIDChartProps extends HIDComponentProps { /** JSX Component */ option: any; height: string; width: string; } interface HIDChartState { className: string; } /** * ### The API documentation of the HID Chart React component. Learn more about the properties and the API Methods. * */ export default class HIDChart extends React.Component { state: HIDChartState; private getStyle; render(): JSX.Element; } export {};