import React from 'react';
export interface PolygonProps extends AMap.PolygonOptions {
    visible?: boolean;
    editable?: boolean;
    editorEvents?: any;
    events?: any;
}
export declare const Polygon: React.FC<PolygonProps>;
