/// <reference types="react" />
import ConfigurationPanelContent from "./ConfigurationPanelContent";
import { IAxisProperties } from "../../interfaces/AxisType";
export default class BaseChartConfigurationPanel extends ConfigurationPanelContent {
    protected renderCanvasSection(): JSX.Element;
    protected renderConfigurationPanel(): JSX.Element;
    protected getAxesConfiguration(type: string): any[];
    protected getControlProperties(): {
        gridEnabled: any;
        axes: IAxisProperties[];
    };
    protected getBubbleClassNames(): string;
    protected isViewedBy(): boolean;
    protected getBaseChartAxisSection(axes: IAxisProperties[]): JSX.Element[];
    protected renderMinMax(basePath: string): JSX.Element;
}
