export declare const AnnotationConflictTypeEnum: {
    readonly MissingAnnotation: "missing_annotation";
    readonly ExtraAnnotation: "extra_annotation";
    readonly MismatchingLabel: "mismatching_label";
    readonly LowOverlap: "low_overlap";
    readonly MismatchingDirection: "mismatching_direction";
    readonly MismatchingAttributes: "mismatching_attributes";
    readonly MismatchingGroups: "mismatching_groups";
    readonly CoveredAnnotation: "covered_annotation";
};
export type AnnotationConflictTypeEnum = typeof AnnotationConflictTypeEnum[keyof typeof AnnotationConflictTypeEnum];
