import * as React from 'react'; import { IAccessibilityProps, IChartDataPoint } from './index'; import { IStackedBarChartProps } from '../../index'; export interface IStackedBarChartState { isCalloutVisible: boolean; selectedLegendTitle: string; refSelected: any; dataForHoverCard: number; color: string; isLegendHovered: boolean; isLegendSelected: boolean; xCalloutValue?: string; yCalloutValue?: string; dataPointCalloutProps?: IChartDataPoint; callOutAccessibilityData?: IAccessibilityProps; calloutLegend: string; } export declare class StackedBarChartBase extends React.Component { static defaultProps: Partial; private _classNames; private _calloutId; private _refArray; private _calloutAnchorPoint; constructor(props: IStackedBarChartProps); render(): JSX.Element; private _adjustProps; private _createBarsAndLegends; private _onBarFocus; private _addLegend; private _generateEmptyBar; private _refCallback; private _onClick; private _onHover; private _onLeave; private _onBarHover; private _onBarLeave; private _handleChartMouseLeave; private _redirectToUrl; private _closeCallout; private _getAriaLabel; }