interface IconProps { width: number; height: number; url: string; } interface MarkerProps { position: any; visible?: boolean; anchor?: any; labelAnchor?: any; icon?: IconProps; elevation?: number; rotation?: number; title?: string; snippet?: string; windowAnchor?: any; zIndex?: number; label?: string | map4d.MarkerLabelOptions; draggable?: boolean; iconView?: string | Node; clickable?: boolean; map?: any; infoWindow?: string | Node; infoContents?: string | Node; showInfoWindow?: boolean; onClick?: (args: any) => void; onCreated?: (marker: any) => void; onRightClick?: (args: any) => void; onDragEnd?: (args: any) => void; onHover?: (args: any) => void; onMouseOut?: (args: any) => void; onMouseOver?: (args: any) => void; onMouseMove?: (args: any) => void; } declare const MFMarker: (props: MarkerProps) => any; export default MFMarker;