import { ExternalRasterDatasource, ExternalVectorDatasource, Feature, Polygon } from "../types/index.js"; export type OsmLandFeature = Feature; export type EezLandUnion = Feature; /** * Definitive list of global datasources for geoprocessing framework * @todo: fetch from global-datasources repo */ export declare const globalDatasources: (ExternalVectorDatasource | ExternalRasterDatasource)[]; export declare const globalDatasourcesById: Record;