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