import type { FeatureCollection } from 'geojson'; import type { StyleLike } from 'ol/style/Style'; import type { BoxSelect, ClickOnFeature, HoverSelect } from '../utils/types'; export interface OpenLayersFeatureLayerProps { featureCollection?: FeatureCollection; style?: StyleLike; zIndex?: number; hoverSelect?: HoverSelect; clickOnFeature?: ClickOnFeature; boxSelect?: BoxSelect; testId?: string; opacity?: number; declutter?: boolean; visible?: boolean; } export declare const OpenLayersFeatureLayer: React.FC;