import { Feature, FeatureCollection } from 'geojson'; import { ReactNode } from 'react'; export interface LineStyle { color?: string; width?: number; opacity?: number; } export interface RenderFeaturesProps { features?: Feature | Feature[] | FeatureCollection; lineLabel?: ReactNode; lineStyle?: LineStyle; } declare const RenderFeatures: ({ features, lineLabel, lineStyle }: RenderFeaturesProps) => import("react/jsx-runtime").JSX.Element | null; export default RenderFeatures;