import { AnnotationType, LineType } from '../enums'; import { Thickness } from '../structs'; export declare class LevelAnnotationConfig { annotationType: AnnotationType; levels: Array; title: string | null; titleFontColor: string | null; titleColor: string | null; offset: Thickness; lineWidth: Thickness; opacity: number; borderColor: string | null; fillColor: String; lineType: LineType; constructor(config?: Partial); }