import OlLayerVector from 'ol/layer/Vector.js'; import OlSourceVector from 'ol/source/Vector.js'; import { Geometry as OlGeometry } from 'ol/geom.js'; import OlFeature from 'ol/Feature.js'; import RenderFeature from 'ol/render/Feature.js'; import OlStyle from 'ol/style/Style.js'; /** * Parse a capabilities string document and returns a capabilities object with * it. */ export declare const parseWMTSCapabilities: (wmtsCapabilities: string) => Record; /** * Set the style of a layer (only) once. */ export declare const updateLayerStyle: (layer: OlLayerVector>, styleFn: (feature: OlFeature | RenderFeature) => OlStyle | OlStyle[]) => void;