import { NgwMap, NgwMapOptions } from '@nextgis/ngw-map'; export * from '@nextgis/ngw-map'; import { MaplibreGLMapAdapterOptions } from '@nextgis/maplibre-gl-map-adapter'; import { NgwGeoJsonLayerOptions, NgwGeoJsonLayerAdapter, NgwLayerOptions, NgwWebmapLayerAdapter, ResourceAdapter } from '@nextgis/ngw-kit'; import { FeatureProperties } from '@nextgis/utils'; import { Map } from 'maplibre-gl'; declare class NgwMaplibreGL extends NgwMap { constructor(options: NgwMapOptions); static create(options: NgwMapOptions): Promise; addNgwLayer

(options: NgwGeoJsonLayerOptions>): Promise | undefined>; addNgwLayer(options: NgwLayerOptions<'NGW:WEBMAP'> & { adapter: 'NGW:WEBMAP'; }): Promise | undefined>; addNgwLayer(options: NgwLayerOptions): Promise; } export { NgwMaplibreGL as default };