import React from 'react'; import { CircleMarker as LeafletCircleMarker } from 'leaflet'; declare const CircleMarker: React.ForwardRefExoticComponent<{ latlng: import("leaflet").LatLngExpression; fit?: boolean | undefined; children?: React.ReactNode; onMounted?: ((circle: LeafletCircleMarker) => void) | undefined; } & import("leaflet").CircleMarkerOptions & { onMove?: import("../../../types").EventHandler> | undefined; } & import("../../_events/InteractiveEvents").Methods> & import("../../_events/LayerEvents").Methods> & import("../../_events/PopupEvents").Methods> & import("../../_events/TooltipEvents").Methods> & React.RefAttributes | undefined>>; export default CircleMarker;