interface DirectionsRendererProps { routes?: string | object | map4d.RouteOptions | map4d.ILatLng[][]; /** * @deprecated The `directions` prop is no longer support, which is subject to removal in a future versions. Use * the `routes` prop instead. */ directions?: string; activedIndex?: number; activeStrokeWidth?: number; activeStrokeColor?: string; activeOutlineWidth?: number; activeOutlineColor?: string; activeStrokePattern?: map4d.PatternItem; inactiveStrokeWidth?: number; inactiveStrokeColor?: string; inactiveOutlineWidth?: number; inactiveOutlineColor?: string; inactiveStrokePattern?: map4d.PatternItem; originMarkerOptions?: map4d.MarkerOptions; destinationMarkerOptions?: map4d.MarkerOptions; waypointMarkerOptions?: map4d.MarkerOptions[]; onMarkerDragEnd?: Function; map?: map4d.Map; onCreated?: (directionsRenderer?: map4d.DirectionsRenderer) => void; onHover?: (args: any) => void; onMouseOut?: (args: any) => void; onMouseOver?: (args: any) => void; onMouseMove?: (args: any) => void; } declare const MFDirectionsRenderer: (props: DirectionsRendererProps) => any; export default MFDirectionsRenderer;