import { AnnotationType, ZOrderType, LineType } from '../enums'; import { Thickness } from '../structs'; export declare class BackgroundAnnotationConfig { annotationType: AnnotationType; items: Array; includeChildren: Boolean; zOrderType: ZOrderType; offset: Thickness; lineWidth: number; opacity: number; borderColor: string | null; fillColor: string | null; lineType: LineType; selectItems: Boolean; constructor(config?: Partial); }