import { ITopologyEventParams } from '../../constants/action-event';
import ChartDrillDownService from './base-chart-drill';
/**
 * 一维图表实现DrillDown Service
 */
export default class TopologyDrillDownService extends ChartDrillDownService<ITopologyEventParams> {
    toSearchAutoEvent(params: ITopologyEventParams): {
        buckets: import("../../constants/action-event").IBucket[];
        metrics?: import("../../constants/action-event").IMetric[] | undefined;
    };
    toDrillDownToken(params: ITopologyEventParams): {
        row: IKeyValues<any>;
        click: {
            name: string;
            value: string;
            name1: string;
            value1: string;
        };
    };
}
