/// <reference types="hoist-non-react-statics" />
import React from 'react';
import { IChartDataset } from '@qn-pandora/app-sdk';
import TwoDChartStyleService from '../../../base-pandora-visualization/services/chart-style/charts/two-d';
import BasicComponent from '../BasicComponent';
interface IXPanelContentProps {
    chartStyleService: TwoDChartStyleService;
    dataset: IChartDataset;
}
export declare class XPanelContent extends BasicComponent<IXPanelContentProps, any> {
    get chartStyleService(): TwoDChartStyleService<import("../../../base-pandora-visualization/services/chart-style/charts/two-d").ITwoDChartStyle>;
    get labelModes(): {
        value: import("../../../constants/chart-style").LabelShowMode;
        item: string;
    }[];
    handleXNameChange(e: any): void;
    handleOnChange(value: any): void;
    render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IXPanelContentProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IXPanelContentProps, any> & typeof XPanelContent) | (React.FunctionComponent<IXPanelContentProps> & typeof XPanelContent), {}>;
export default _default;
