import * as React from 'react'; import { Events } from '../../types'; export interface MapProps { plugins?: any[]; mapOptions?: { [key: string]: any; }; fullScreen?: boolean; hideFitView?: boolean; style?: any; children?: any; name?: string; events?: Events; instance?: any; } export declare const setAMapVersion: (version: string) => void; export declare const getAMapVerion: () => any; export declare const setAMapKey: (key: string) => void; export declare const getAMapKey: () => any; export declare function requireMap(callback: () => any): void; export declare const MapContext: React.Context; declare function Map(props: MapProps): JSX.Element; export default Map;