import { ChangeTypes } from '../../../enums/index.js'; import type { Annotation } from '../../../types/AnnotationTypes.js'; import type { AnnotationRemovedEventDetail } from '../../../types/EventTypes.js'; declare function triggerAnnotationAddedForElement(annotation: Annotation, element: HTMLDivElement): void; declare function triggerAnnotationAddedForFOR(annotation: Annotation): void; declare function triggerAnnotationRemoved(eventDetail: AnnotationRemovedEventDetail): void; declare function triggerAnnotationModified(annotation: Annotation, element?: HTMLDivElement, changeType?: ChangeTypes): void; declare function triggerAnnotationCompleted(annotation: Annotation): void; declare function triggerContourAnnotationCompleted(annotation: Annotation, contourHoleProcessingEnabled?: boolean): void; export { triggerAnnotationAddedForElement, triggerAnnotationAddedForFOR, triggerAnnotationRemoved, triggerAnnotationModified, triggerAnnotationCompleted, triggerContourAnnotationCompleted, };