import * as React from 'react'; import { IVerticalStackedChartProps } from '@fluentui/react-charting'; interface IVerticalStackedBarState { width: number; height: number; barGapMax: number; showLine: boolean; } export declare class VerticalStackedBarChartBasicExample extends React.Component<{}, IVerticalStackedBarState> { constructor(props: IVerticalStackedChartProps); render(): JSX.Element; private _onWidthChange; private _onHeightChange; private _onShowLineChange; private _basicExample; } export {};