import { GeoJsonObject } from 'geojson';

type SimplifyOptions = {
    tolerance?: number;
    fraction?: number;
    mutate?: boolean;
};
declare function export_default(geojson: GeoJsonObject, options?: SimplifyOptions): GeoJsonObject;

export { type SimplifyOptions, export_default as default };
