import React from 'react';
interface EditorProps {
name: 'PolygonEditor' | 'PolylineEditor' | 'CircleEditor' | 'BezierCurveEditor' | 'EllipseEditor' | 'RectangleEditor';
overlay: any;
events?: any;
}
export declare const Editor: React.FC<EditorProps>;
export {};