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