import { OnChanges, OnDestroy, OnInit, SimpleChange } from '@angular/core'; import { MapService } from '../providers/mapService'; import { CanvasLayerOptions } from "../types/CanvasLayer"; import { BMapInstance } from "../types/Map"; export declare class CircleOutsideComponent implements OnInit, OnChanges, OnDestroy { private _service; private center; private radius; private options; private loaded; canvasOptions: CanvasLayerOptions; private circleOutside; constructor(_service: MapService); ngOnInit(): void; getPiexValueByRealDistance(map: BMapInstance, realDistance: number): number; ngOnChanges(changes: { [propertyName: string]: SimpleChange; }): void; ngOnDestroy(): void; }