import type { FeatureCollection, Geometry, GeoJsonProperties } from 'geojson'; import { View } from 'ol'; import type { Bbox } from '@opengeoweb/webmap'; export declare const setViewFromExtent: (view: View, bbox: Bbox) => void; export declare const setViewFromFeature: (view: View, geojsonFeature: FeatureCollection | undefined) => void; export declare const makeView: (projectionCode?: string) => View; export declare const viewUtils: { setViewFromExtent: (view: View, bbox: Bbox) => void; setViewFromFeature: (view: View, geojsonFeature: FeatureCollection | undefined) => void; makeView: (projectionCode?: string) => View; };