///
type BBox = Array;
type Points = GeoJSON.FeatureCollection;
type Polygons = GeoJSON.FeatureCollection;
/**
* http://turfjs.org/docs/#within
*/
declare function within(points: Points, polygons: Polygons): Points;
declare namespace within { }
export = within;