import { IChartDataset } from '@qn-pandora/app-sdk';
import BubbleChinaChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/map/bubble/bubbleChina';
import { ISearchChartStyleService } from '../base';
import SearchOneDChartStyleService from '../one-d';
export default class SearchBubbleChinaChartStyleService extends BubbleChinaChartStyleService implements ISearchChartStyleService {
    searchOneDChartStyleService: SearchOneDChartStyleService;
    get option(): {
        maxSize: number;
        minSize: number;
        minDiameter: number | undefined;
        maxDiameter: number | undefined;
        threshold: number;
        sizeType: import("../../../../constants").ESizeType;
        mapBubbleColor: string | undefined;
        geoLevel: import("../../../../constants").EGeoLevel;
        legend: import("../../../..").IOneDLegend;
        showCalculable: boolean;
        showVisualMap: boolean;
        dataDetailsValue: import("../../../../constants").StatusSwitch;
        labelLayoutType: boolean;
        labelValueType: import("../../../../constants").ELabelValueType[];
        chartType: import("../../../..").ChartType;
        currentBuckets: string[];
        currentMetrics: string[];
        unit: string[];
        precision: number;
        displayColors?: import("../../../..").IColor[] | undefined;
    };
    datasetReaction(dataset: IChartDataset): void;
}
