import { CRS, Point } from 'leaflet'; import { ICRS } from '../types'; export default class WebMercator implements ICRS { readonly reverse: boolean; identifiers: { leaflet: string; krite: string; }; crs: CRS; constructor(reverse?: boolean); geoTo(geojson: GeoJSON.GeoJsonObject | GeoJSON.Feature | GeoJSON.FeatureCollection | GeoJSON.GeometryCollection): import("geojson").GeoJsonObject | import("geojson").GeometryCollection | import("geojson").Feature | import("geojson").FeatureCollection; geoFrom(geojson: GeoJSON.GeoJsonObject | GeoJSON.Feature | GeoJSON.FeatureCollection | GeoJSON.GeometryCollection): import("geojson").GeoJsonObject | import("geojson").GeometryCollection | import("geojson").Feature | import("geojson").FeatureCollection; pointTo(point: L.Point): import("leaflet").LatLng; pointFrom(latLng: L.LatLng): Point; project(latLng: L.LatLng): Point; unproject(point: L.Point): import("leaflet").LatLng; }