import { AnnotationType, ZOrderType, ShapeType, LineType, PlacementType } from '../enums'; import { Size, Thickness } from '../structs'; export declare class ShapeAnnotationConfig { annotationType: AnnotationType; zOrderType: ZOrderType; items: Array; shapeType: ShapeType; offset: Thickness; lineWidth: number; cornerRadius: String | number; opacity: number; borderColor: string | null; fillColor: string | null; lineType: LineType; selectItems: Boolean; label: string | null; labelSize: Size; labelPlacement: PlacementType; labelOffset: number; constructor(config?: Partial); }