export declare let getCommonGeo: (style: any, mapName: string) => { map: string; selectedMode: boolean | "multiple" | "single"; itemStyle: { areaColor: string; borderColor: string; label: { show: boolean; color: string; }; }; emphasis: { label: { show: boolean; }; itemStyle: { areaColor: string; shadowColor: string; }; }; label: { show: boolean; fontSize: number; color: string; }; roam: boolean; zoom: number; }; export declare let getGeo3D: (style: any, mapName?: string) => { map: string; boxWidth: number; itemStyle: { color: string; borderColor: string; opacity: number; borderWidth: number; }; label: { show: boolean; distance: number; textStyle: { color: string; fontSize: number; opacity: number; backgroundColor: string; }; formatter: (param: any) => string; }; emphasis: { itemStyle: { color: string; opacity: number; borderColor: string; }; label: { show: boolean; distance: number; }; }; light: { main: { color: string; intensity: number; shadow: boolean; alpha: number; beta: number; }; ambient: { intensity: number; }; }; };