import type { ScaleTime } from 'd3-scale'; import type { Point } from '../../../../core/types/point.js'; import type { YAxisScales } from '../../../types/state.js'; import type { DatapointsMap } from '../../../types/timeseries.js'; import type { TimeseriesDataPointAllTypes } from '../../displays/shared/types.js'; export declare const getPointsParsed: (mousePosition: Point | undefined, allDatapoints: TimeseriesDataPointAllTypes[], xScale: ScaleTime, yScale: YAxisScales, datapointsMap: WeakMap, width: number, height: number) => { closestPoint: import("./tooltip/find-closest-points.js").TimeseriesClosestPoint; filteredPoints: import("./tooltip/find-closest-points.js").TimeseriesClosestPoint[]; groupedPoints: import("../../../../core/types/data-point.js").GroupDataPoint; };