import { IChartDataset } from '@qn-pandora/app-sdk';
import { ISearchChartStyleService } from '../base';
import BubbleChartStyleService, { getChartInitStyle } from '../../../../base-pandora-visualization/services/chart-style/charts/bubble/bubble';
export default class SearchBubbleChartStyleService extends BubbleChartStyleService implements ISearchChartStyleService {
    static getChartInitStyle: typeof getChartInitStyle;
    get option(): {
        minSize: number;
        maxSize: number;
        minDiameter: number | undefined;
        maxDiameter: number | undefined;
        threshold: number;
        showZero: import("../../../../constants").StatusSwitch;
        sizeType: import("../../../../constants").ESizeType;
        sizeField: string[];
        unit: string[];
        precision: number;
        chartType: import("../../../..").ChartType;
        mainAxis: import("../../../..").IMainAxis;
        crossAxis1: import("../../../..").ICrossAxis;
        crossAxis2: import("../../../..").ICrossAxis2;
        legend: import("../../../..").ITwoDLegend;
        colors: import("../../../..").IColors;
        colorMode: import("@qn-pandora/pandora-app-component").EColorMode;
        compare: import("../../../../base-pandora-visualization/services/chart-style/components/compare").ICompare;
        baseLine: import("@qn-pandora/pandora-app-component").IBaseLine<any>[];
        showToolBox: boolean;
        tooltipType: import("../../../../constants").ETooltipType;
        tooltipAppendToBody?: boolean | undefined;
        markLine?: import("../../../../constants").IMarkLineType | undefined;
        displayColors?: import("../../../..").IColor[] | undefined;
    };
    datasetReaction(dataset: IChartDataset): void;
}
