1 | import { type PathProps } from '@react-leaflet/core';
|
2 | import { type LatLngExpression, Polyline as LeafletPolyline, type PolylineOptions } from 'leaflet';
|
3 | import type { ReactNode } from 'react';
|
4 | export interface PolylineProps extends PolylineOptions, PathProps {
|
5 | children?: ReactNode;
|
6 | positions: LatLngExpression[] | LatLngExpression[][];
|
7 | }
|
8 | export declare const Polyline: import("react").ForwardRefExoticComponent<PolylineProps & import("react").RefAttributes<LeafletPolyline<import("geojson").LineString | import("geojson").MultiLineString, any>>>;
|