export declare type AnnotationRendering = | "normal" | "fragment-right" | "fragment-left" | "fragment-middle"; export interface Annotation { id: string; from: number; to: number; displayName?: string; data?: K; tag?: string; selectedText?: string; rendering?: AnnotationRendering; backgroundColor?: string; } export interface AnnotationFragment extends Annotation { rendering: AnnotationRendering; }