import type { IPickerService, IPickParams, PickResult } from './../../../vrender';
import type { IMatrix, IPointLike } from '@visactor/vutils';
export declare class VChartPickServiceInterceptorContribution {
    order: number;
    afterPickItem(result: PickResult, pickerService: IPickerService, point: IPointLike, pickParams: IPickParams, params?: {
        parentMatrix: IMatrix;
    }): null | PickResult;
}
