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