import { Feature, FeatureCollection, GeoprocessingRequestModel, Sketch, SketchCollection, Geometry, GeoprocessingRequest } from "../types/index.js"; /** * Given geoprocessing function request, fetches the GeoJSON, which can also be sketch JSON * @param request * @returns the JSON with geometry type optionally specified by request */ export declare const fetchGeoJSON: (request: GeoprocessingRequest | GeoprocessingRequestModel) => Promise | FeatureCollection | Sketch | SketchCollection>;