import { IEvents } from '../types'; export interface ICircleProps { center: any; radius: any; circleOptions?: { // path: any; // AMap.LocationValue[] | AMap.LocationValue[][] | undefined; [option: string]: any; }; events?: IEvents; } declare function Circle(props: ICircleProps): any; export default Circle;