import { RDCRS } from 'leaflet-rd'; import { ICRS } from '../types'; import { LatLng, Point } from 'leaflet'; export default class Rijksdriehoekstelsel implements ICRS { identifiers: { leaflet: string; krite: string; }; crs: RDCRS; geoTo(geojson: GeoJSON.GeoJSON): GeoJSON.GeoJSON; geoFrom(geojson: GeoJSON.GeoJSON): any; pointTo(point: Point): LatLng; pointFrom(latLng: LatLng): Point; }