import { IChartDataset } from '@qn-pandora/app-sdk';
import StackAreaChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/line/stack-area';
import SearchTwoDChartStyleService from '../two-d';
import { ISearchChartStyleService } from '../base';
export default class SearchStackAreaChartStyleService extends StackAreaChartStyleService implements ISearchChartStyleService {
    searchTwoDChartStyleService: SearchTwoDChartStyleService;
    get option(): {
        bandList: import("../../../../constants/line-style").IBand[];
        markAreas: import("../../../../constants/line-style").IMarkAreas[];
        emphasizeAreas: import("../../../../constants/line-style").IEmphasizeAreas[];
        tagColors: import("../../../../constants/line-style").ITagColor[];
        smoothLine: boolean;
        point: import("../../../..").IPoint;
        markPointType: import("../../../../constants").ILineMarkPointType;
        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;
}
