type options = { key: string; // 高德地图的API Key version?: string; // API版本,默认为最新版本 plugins?: string[]; // 需要加载的插件列表 AMapUI?: any; Loca?: any; }; declare namespace AMapLoader { export function load<T>(settings: options): Promise<T>; }