/** * CORINE Land Cover 2018 — EEA ArcGIS REST client. * * Data source: Copernicus Land Monitoring Service / EEA * Licence: Copernicus (free, attribution required) * Coverage: EU27 + EEA/EFTA. Great Britain is NOT covered (UK left the * programme after CLC 2012). Return null for GB queries. * * CLC uses a three-level hierarchical nomenclature with 44 classes. * We return the raw code (string, e.g. "211"), the human label, the * top-level class group, and a conservative `is_planning_exclusion` flag. */ /** EU member states + EEA/EFTA covered by CORINE 2018. */ export declare const CORINE_COVERED_COUNTRIES: Set; export interface CorineResult { /** 3-digit CLC code string, e.g. "211" */ code: string; /** Human-readable label, e.g. "Non-irrigated arable land" */ label: string; /** Top-level CLC class group */ class_group: string; /** * True if this land-cover type typically faces strong planning barriers * for PV/BESS development. Conservative: only wetlands, water bodies, * and semi-natural woodland are flagged. Agricultural land is NOT flagged * here — that risk is assessed separately by ALC/national tools. */ is_planning_exclusion: boolean; source: "corine-land-cover-2018"; } export declare function queryCorineAtPoint(lat: number, lon: number): Promise;