import { Annotation, AnnotationFragment } from "../../contracts/annotation"; export declare const isConflicting: (fromA: number, toA: number, fromB: number, toB: number) => boolean; export declare const createAnnotationRendering: (annotations: Annotation[]) => AnnotationFragment[]; export declare const sortAnnotationsByStart: (annotations: Annotation[]) => Annotation[];