import type { Image } from '@lunit/insight-viewer'; import type { Point } from '../types'; import type { Annotation, EditMode } from '../types'; interface GetDrawingAnnotationParams { image: Image; editMode: EditMode | null; currentPoint: Point; movedStartPoint: Point; drawingStartPoint: Point; prevAnnotation: Annotation; } export declare function getPointsUpdatedAnnotation({ image, editMode, currentPoint, drawingStartPoint, movedStartPoint, prevAnnotation, }: GetDrawingAnnotationParams): Annotation; export {};