import { Feature } from 'ol'; import { Geometry } from 'ol/geom'; import { IAnnotation, AnnotationCircle, AnnotationPoint, AnnotationPolygon, AnnotationRectangle } from '../models/annotation'; export declare class AnnotationToOlFeature { static annotationToFeature(annotation: IAnnotation): Feature; static annotationToCircleFeat(a: AnnotationCircle): Feature; static annotationToPolygonFeat(a: AnnotationRectangle | AnnotationPolygon): Feature; static annotationToPointFeat(a: AnnotationPoint): Feature; static addAnnotationInfoToFeature(a: IAnnotation, f: Feature): void; }