import { AnnotationManager, Annotation, AnnotationType } from '../../core/annotations'; import { ChartPlugin } from '../types'; export interface PluginAnnotationsConfig { /** Default styles for annotations */ defaultStyles?: Record; } /** * VeloPlot Annotations Plugin * * Adds support for drawing lines, shapes, and labels on the chart. */ export declare function PluginAnnotations(_config?: PluginAnnotationsConfig): ChartPlugin; export { AnnotationManager }; export type { Annotation, AnnotationType }; export default PluginAnnotations;