import React from 'react';
import { MapProps } from '@/map/map';
export interface MapContext {
    url?: string;
    UIUrl?: string;
    version?: string;
    key?: string;
    plugin?: string[];
    options?: MapProps;
}
export declare const Context: React.Context<MapContext>;
export declare const ConfigProvider: React.Provider<MapContext>;
