export interface Events { [event: string]: (e: any) => any; } export interface CircleProps { center: any; radius: any; circleOptions?: { [option: string]: any; }; events?: Events; } declare function Circle(props: CircleProps): any; export default Circle;