import type { Feature, GeoJsonProperties, Polygon, GeoJSON } from 'geojson'; import type { BBox } from './bbox'; export declare function BBoxToGeoJSONPolygon(bbox: BBox): Polygon; export declare function BBoxToGeoJSONFeature(bbox: BBox, properties?: GeoJsonProperties): Feature; export declare function getGeoJSONBBox(geojson: GeoJSON): BBox;