import { IChartDataset } from '@qn-pandora/app-sdk';
import MigrationWorldStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/migration/world';
import { ISearchChartStyleService } from '../base';
import SearchRelationBaseStyleService from '../relation-base';
export default class SearchMigrationWorldStyleService extends MigrationWorldStyleService implements ISearchChartStyleService {
    searchRelationBaseStyleService: SearchRelationBaseStyleService;
    get option(): {
        inflowColor: string;
        outflowColor: string;
        gradientColor: string[];
        colorType: import("../../../../constants").EGradientColorType;
        bubbleMaxSize: number;
        maxDiameter: number | undefined;
        bubbleMinSize: number;
        minDiameter: number | undefined;
        sizeType: import("../../../../constants").ESizeType;
        geoLevel: import("../../../../constants").EGeoLevel;
        chartType: import("../../../..").ChartType;
        currentBuckets: string[];
        currentMetrics: string[];
        unit: string[];
        precision: number;
        displayColors?: import("../../../..").IColor[] | undefined;
    };
    datasetReaction(dataset: IChartDataset): void;
}
