import * as React from 'react'; import { IVerticalBarChartProps } from '@fluentui/react-charting'; interface IVerticalChartState { width: number; height: number; isCalloutselected: boolean; useSingleColor: boolean; } export declare class VerticalBarChartBasicExample extends React.Component { constructor(props: IVerticalBarChartProps); render(): JSX.Element; private _onWidthChange; private _onHeightChange; private _onChange; private _onCheckChange; private _basicExample; } export {};