import type { ControlPosition } from 'leaflet'; export interface MapLegendDiscreteProps { position: ControlPosition; minValue: number; minColor: string; maxValue: number; maxColor: string; } declare const MapLegendContinuous: ({ position, minValue, minColor, maxValue, maxColor }: MapLegendDiscreteProps) => import("react/jsx-runtime").JSX.Element; export default MapLegendContinuous;