declare enum AnnotationStatus {
    CREATING = 0,// during creation of line / polygon
    CREATED = 1,// created, but not loaded from the server
    DELETED = 2,
    LOADED = 3,// loaded using props (initialAnnotations)
    CHANGED = 4
}
export default AnnotationStatus;
