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