import { Definition, UnknownSpec } from '../common'; export interface AnnotationDisplay { name: string; description?: string; hidden?: boolean; color?: string; } export interface AnnotationSpec { display: AnnotationDisplay; plugin: Definition; } export interface AnnotationData { start: number; end?: number; title?: string; legend?: string; tags?: Record; } //# sourceMappingURL=annotation.d.ts.map