import { BaseLayer } from '../../core/base-layer';
import { Circle, LatLngExpression, LayerGroup, Map, PathOptions } from 'leaflet';
export declare class CircleComponent extends BaseLayer<Circle> {
    center: LatLngExpression;
    radius: number;
    options: PathOptions;
    private _center;
    private _radius;
    private _options;
    addTo(map: Map | LayerGroup): void;
    private createLayer;
}
