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