import { FeatureCollection, Point, BBox, Polygon } from 'geojson'; import { Units, Grid } from '@turf/helpers'; /** * http://turfjs.org/docs/#interpolate */ declare function interpolate( points: FeatureCollection, cellSize: number, options?: { gridType?: "point"; property?: string; units?: Units; weight?: number; bbox?: BBox; } ): FeatureCollection; declare function interpolate( points: FeatureCollection, cellSize: number, options?: { gridType?: Grid; property?: string; units?: Units; weight?: number; bbox?: BBox; } ): FeatureCollection; export { interpolate as default, interpolate };