import type { UseChartCartesianAxisSignature } from "../../internals/plugins/featurePlugins/useChartCartesianAxis/index.js";
import type { ChartState } from "../../internals/plugins/models/chart.js";
import type { SeriesItemIdentifierWithType } from "../../models/seriesType/index.js";
export default function getItemAtPosition(state: ChartState<[UseChartCartesianAxisSignature]>, point: {
  x: number;
  y: number;
}): SeriesItemIdentifierWithType<'line'> | undefined;