import TileLayer from 'ol/layer/Tile'; import WMTS from 'ol/source/WMTS'; import VectorLayer from 'ol/layer/Vector'; import VectorSource from 'ol/source/Vector'; import Feature from 'ol/Feature'; import { Point } from 'ol/geom'; import { StyleLike } from 'ol/style/Style'; export declare const createPointFeature: () => Feature; export declare const styleFn: StyleLike; export declare const createOlVectorLayer: () => VectorLayer; export declare const createOlWmtsLayer: (url?: string) => TileLayer;