import type { CartesianChartOrientation } from "../../types";
export declare const getClosestDatumIndex: ({ orientation, categoryPositions, touchX, touchY, }: {
    orientation: CartesianChartOrientation;
    categoryPositions: number[];
    touchX: number;
    touchY: number;
}) => number | null;
