import { DataPoint } from '../../types/data-point.js'; import type { PointShapeType } from '../shape/type.js'; interface CanvasGroupDataPointsProps { /** DataPoints belonging to the same group */ points: DataPoint[]; /** Closest point to the mouse position & the x and y position of the tooltip */ closestPoint?: DataPoint; /** axis where the value coordinates belongs to */ valueAxis?: 'x' | 'y'; shape?: PointShapeType; } /** * Component for rendering a single dataPoint or a group of dataPoints. */ export declare const DataPointCanvas: (props: CanvasGroupDataPointsProps) => import("react/jsx-runtime").JSX.Element; export {};