import { IAdaptableBlotter } from '../../../Utilities/Interface/IAdaptableBlotter'; import * as React from 'react'; import { AccessLevel } from '../../../PredefinedConfig/Common/Enums'; export interface IAdaptableBlotterChartProps extends React.ClassAttributes { showChart: boolean; onClose?: () => void; AdaptableBlotter: IAdaptableBlotter; showModal: boolean; } export interface AdaptableBlotterChartState { chartContainer: HTMLElement; accessLevel: AccessLevel; isValidUserChartContainer: boolean; } export declare class AdaptableBlotterChart extends React.Component { constructor(props: IAdaptableBlotterChartProps); render(): JSX.Element; }