import { DataPoint } from '../../types/data-point.js'; import { type CanvasShapeType } from '../canvas/utils/shapes/symbol-canvas.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?: CanvasShapeType; } /** * Component for rendering a single dataPoint or a group of dataPoints. */ export declare const DataPointCanvas: (props: CanvasGroupDataPointsProps) => import("react/jsx-runtime.js").JSX.Element; export {};