/** * Lock-state helpers for editor-owned annotation objects. * * The convention is intentionally strict: an annotation is locked only when * `annotationLocked === true`; missing metadata behaves the same as `false`. * * @module */ import type { AnnotationObject } from '../core/public-types.js'; export declare function isAnnotationLocked(annotation: Pick): boolean; export declare function isAnnotationUnlocked(annotation: Pick): boolean; //# sourceMappingURL=annotation-lock.d.ts.map