import React from 'react'; interface IntersectionElement { geojson: GeoJSON.FeatureCollection; title: string; } interface IntersectionSelectProps { intersections: IntersectionElement[]; onChangeIntersection: (geojson: GeoJSON.FeatureCollection, title: string) => void; isDisabled?: boolean; } export declare const IntersectionSelect: React.FC; export default IntersectionSelect;