import { EditorState } from 'braft-editor';
import BaseChartStore from '../stores/base';
import EditorChartStyle from '../../../base-pandora-visualization/services/chart-style/charts/editor/editor';
export default class EditorChartStore extends BaseChartStore<EditorChartStyle> {
    editorState: EditorState;
    get series(): never[];
    get chartDataset(): {
        fields: never[];
        rows: never[];
    };
    get htmlContent(): any;
    setDditorState(editorState: EditorState): void;
}
