import React from 'react';
export interface RectangleProps extends Omit<AMap.RectangleOptions, 'bounds'> {
    visible?: boolean;
    editable?: boolean;
    events?: any;
    editorEvents?: any;
    bounds: {
        southWest: AMap.Vector2;
        northEast: AMap.Vector2;
    };
}
export declare const Rectangle: React.FC<RectangleProps>;
