import { IScatterEventParams } from '../../constants/action-event';
import ChartCommonActionService from './base-chart-action';
/**
 * 散点图、气泡图实现Link Service
 */
export default class ScatterChartActionService extends ChartCommonActionService<IScatterEventParams> {
    toEvent(params: IScatterEventParams): import("../..").ICommonEvent;
    toActionToken(params: IScatterEventParams): {
        row: {
            [x: string]: any;
        };
        click: {
            name: string;
            value: any;
            name1: string;
            value1: any;
        };
    };
}
