import { Feature, FeatureCollection, MultiPolygon, Polygon } from "geojson"; /** * Removes overlap between polygons and returns result as a single polygon or multipolygon * The result has no connection to the original features and their properties in this process * @param input * @returns */ export declare const removeOverlap: (input: FeatureCollection | Feature[]) => Feature;