interface CircleProps { center: map4d.ILatLng; radius: number; fillColor?: string; fillOpacity?: number; visible?: boolean; strokeColor?: string; strokeWidth?: number; draggable?: boolean; zIndex?: number; elevation?: number; clickable?: boolean; map?: map4d.Map; onCreated?: (circle: map4d.Circle) => void; onClick?: (args: any) => void; } declare const MFCircle: (props: CircleProps) => any; export default MFCircle;