import type { ControlPosition } from 'leaflet'; import type { MapDiscreteLegendItem } from '../../../types/mapTypes'; export interface MapLegendDiscreteProps { position: ControlPosition; legendItems: MapDiscreteLegendItem[]; } declare const MapLegendDiscrete: ({ position, legendItems }: MapLegendDiscreteProps) => import("react/jsx-runtime").JSX.Element; export default MapLegendDiscrete;