import type { AnyMapGlMap } from '../../types'; /** * Get the current resolution of a Maplibre map. * @param {maplibregl.Map} map A map object. */ declare const getMercatorResolution: (map: AnyMapGlMap) => number; export default getMercatorResolution;