import { IEvents } from '../types'; export interface PolylineProps { polylineOptions: { path: any; // AMap.LocationValue[] | AMap.LocationValue[][] | undefined; [option: string]: any; }; events?: IEvents; hoverLabel?: AMap.Marker.Label; } declare function Polyline(props: PolylineProps): any; export default Polyline;