import React from 'react'; import { Polyline as LeafletPolyline } from 'leaflet'; declare const Polyline: React.ForwardRefExoticComponent<{ latlngs: import("leaflet").LatLngExpression[] | import("leaflet").LatLngExpression[][]; fit?: boolean | undefined; children?: React.ReactNode; onMounted?: ((polyline: LeafletPolyline) => void) | undefined; } & import("leaflet").PolylineOptions & import("../../_events/InteractiveEvents").Methods> & import("../../_events/LayerEvents").Methods> & import("../../_events/PopupEvents").Methods> & import("../../_events/TooltipEvents").Methods> & React.RefAttributes | undefined>>; export default Polyline;