import { PointShapeType } from '../../../../core/components/shape/type.js'; import { DataPoint } from '../../../../core/types/data-point.js'; export declare const drawShapeFill: (ctx: CanvasRenderingContext2D, point: DataPoint & { shape?: PointShapeType; }, radius: number) => void; export declare const drawShapeStroke: (ctx: CanvasRenderingContext2D, point: DataPoint & { shape?: PointShapeType; }, radius: number, strokeColor?: string) => void;