import { Feature } from 'ol'; import { GeometryCollection, MultiPoint, Point } from 'ol/geom'; export declare function injectPointGeometryHost(): { getInstance: () => (MultiPoint | GeometryCollection | Feature); addPoint: (point: Point) => void; removePoint: (point: Point) => void; changed: () => void; };