import base from "@egova/base"; import { Circle, IGraphic } from "./map.model"; import { IGraphicsLayer } from "./graphics.layer"; /** * 线 */ export declare class CircleGraphic extends base.EventProvider implements IGraphic { private _geometry; private _isInsided; id: string; attributes: any; isShow: boolean; symbol: any; kind: string; circle: any; layer: IGraphicsLayer; readonly isInsided: boolean; constructor(options: any); show(): void; hide(): void; remove(): void; delete(): void; setSymbol(symbol: any): void; setGeometry(geometry: Circle): void; readonly geometry: Circle; addTo(map: any): void; setAngle(_angle: number): void; }