import { IChartDataset } from '@qn-pandora/app-sdk';
import MapboxPathChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/mapbox/path';
import { ISearchChartStyleService } from '../base';
import SearchOneDChartStyleService from '../one-d';
export default class SearchMapboxPathChartStyleService extends MapboxPathChartStyleService implements ISearchChartStyleService {
    searchOneDChartStyleService: SearchOneDChartStyleService;
    get option(): {
        pointColor: string;
        lineColor: string;
        pointSize: number;
        lineSize: number;
        showPoint: boolean;
        zoomPosition: import("../../../../constants").ControlPositionType;
        longitudeField: string;
        latitudeField: string;
        displayFields: string[];
        maxZoom: number;
        zoom: [number];
        center: [number, number];
        theme: import("../../../../constants").EMapboxMode;
        coordinateSystem: import("../../../../constants").CoordinateSystem;
        chartType: import("../../../..").ChartType;
        currentBuckets: string[];
        currentMetrics: string[];
        unit: string[];
        precision: number;
        displayColors?: import("../../../..").IColor[] | undefined;
    };
    datasetReaction(dataset: IChartDataset): void;
}
