import { GroupDataPoint } from '../../../../core/types/data-point.js'; import { TimeseriesClosestPoint } from '../utils/tooltip/find-closest-points.js'; interface TimeseriesChartDatapointsCanvasProps { /** Closest point to the mouse position & the x and y position of the tooltip */ closestPoint?: TimeseriesClosestPoint; groupedPoints: GroupDataPoint; } /** * Component for rendering the datapoints on the Y axis based on an X coordinate. */ export declare const TimeseriesChartDatapoints: import("react").MemoExoticComponent<(props: TimeseriesChartDatapointsCanvasProps) => import("react/jsx-runtime").JSX.Element>; export {};