import { LatLngExpression, LayerGroup, Map, PathOptions, Polyline } from 'leaflet';
import { BaseLayer } from '../../core/base-layer';
export declare class PolylineComponent extends BaseLayer<Polyline> {
    coordinates: LatLngExpression[];
    options: PathOptions;
    private _coordinates;
    private _options;
    addTo(map: Map | LayerGroup): void;
    private createLayer;
}
