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