/// import {Units} from '@turf/helpers' type Points = GeoJSON.FeatureCollection; type Polygons = GeoJSON.FeatureCollection; /** * http://turfjs.org/docs/#idw */ declare function idw(controlPoints: Points, valueField: string, weight: number, cellWidth: number, units?: Units): Polygons; declare namespace idw { } export = idw;