import type { Map as MapLibreMap } from 'maplibre-gl'; /** * The GIS map, as a plugin sees it. * * Kept separate from `bimViewer` so core's own map toolbar can consume it without * pulling `@thatopen` and three into the eager map-route bundle. Plugins can * import either this module or the `viewer` barrel. */ export interface MapToolProps { /** Null until the map has finished initialising, and in non-map viewers. */ map: MapLibreMap | null; } export declare function useMapViewer(): MapToolProps; //# sourceMappingURL=mapViewer.d.ts.map