interface FeatureLayersProps { geojson: GeoJSON.FeatureCollection; onChangeLayerIndex: (newIndex: number, feature: GeoJSON.Feature) => void; activeFeatureLayerIndex: number; getToolIcon: (selectionType: string) => React.ReactElement; } declare const FeatureLayers: React.FC; export default FeatureLayers;