import * as React from 'react'; import { IEvents, MapLBSType } from '../types'; export interface MapProps { plugins?: AMap.PluginName[]; mapOptions?: { [key: string]: any }; fullScreen?: Boolean; style?: any; children?: any; name?: string; events?:IEvents } export function setMapLBS(lbs: MapLBSType): any; export function getMapLBS(): any; export function setAMapVersion(version: string): any; export function getAMapVerion(): any; export function setAMapKey(key: string): any; export function getAMapKey(): any; export const MapContext: any; declare function Map(props: MapProps): any; export default Map;