import type { Point } from '../types'; import type { Annotation } from '../types'; /** * Get the default editing points of the annotation. * * The Polygon and FreeLine types are not supported editing points. * * So the polygon and FreeLine mode is returned as null. */ export declare const getAnnotationDefaultEditingPoints: (annotation: Annotation) => [Point, Point] | null;