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