import { IChartDataset } from '@qn-pandora/app-sdk';
import { ISearchChartStyleService } from '../base';
import TopologyStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/topology';
export default class SearchTopologyStyleService extends TopologyStyleService implements ISearchChartStyleService {
    get option(): {
        chartType: import("../../../..").ChartType;
        levels: import("../../../../constants/metric-panel-style").ILevel[];
        nodeRules: import("../../../../constants/metric-panel-style").IRule[];
        edgeRules: import("../../../../constants/metric-panel-style").IRule[];
        nodeCount: number;
        nodeLayout: import("@qn-pandora/pandora-component").ELayoutTYpe;
        showLabel: boolean;
        layout: import("@qn-pandora/pandora-component").ELayoutTYpe;
        from: import("../../../../base-pandora-visualization/services/chart-style/charts/topology").IData;
        to: import("../../../../base-pandora-visualization/services/chart-style/charts/topology").IData;
    };
    datasetReaction(_dataset: IChartDataset): void;
}
