import React from 'react'; import type { AnnotationOverlayProps } from './AnnotationOverlay.types'; export declare const AnnotationOverlay: ({ width, height, className, style, isDrawing, clickAction, mode, annotations, showOutline, hoveredAnnotation, selectedAnnotation, showAnnotationLabel, onAdd, onHover, onRemove, onSelect, onChange, }: AnnotationOverlayProps) => React.JSX.Element | null;