import type { Feature } from 'ol'; import type { StyleLike } from 'ol/style/Style'; import type { BoxSelect, ClickOnFeature, HoverSelect } from '../utils/types'; export interface FeatureLayerProps { features: Feature[]; style: StyleLike; zIndex?: number; hoverSelect?: HoverSelect; clickOnFeature?: ClickOnFeature; boxSelect?: BoxSelect; testId?: string; opacity?: number; declutter?: boolean; visible?: boolean; } export declare const FeatureLayer: React.FC;