import { Feature, Geometry } from 'geojson'; /** * Check if a [lng, lat] point is inside a GeoJSON Polygon or MultiPolygon. * * Works for any GeoJSON Feature or Geometry (e.g. isochrones). * Pure functional implementation (no `let`). */ declare const isPointInGeoJSON: (point: [number, number], geometry: Geometry | Feature) => boolean; export default isPointInGeoJSON;