import * as React from 'react'; import { IAccessibilityProps, IHorizontalBarChartProps, IChartDataPoint } from './index'; export interface IHorizontalBarChartState { isCalloutVisible: boolean; refSelected: SVGGElement | null | undefined; color: string; hoverValue: string | number | Date | null; lineColor: string; legend: string | null; xCalloutValue?: string; yCalloutValue?: string; barCalloutProps?: IChartDataPoint; callOutAccessibilityData?: IAccessibilityProps; } export declare class HorizontalBarChartBase extends React.Component { private _barHeight; private _classNames; private _uniqLineText; private _calloutId; private _refArray; private _calloutAnchorPoint; constructor(props: IHorizontalBarChartProps); render(): JSX.Element; private _refCallback; private _hoverOn; private _hoverOff; private _handleChartMouseLeave; private _adjustProps; private _getChartDataText; private _getDefaultTextData; private _createBenchmark; private _createBars; private _closeCallout; private _getAriaLabel; }