import { IBMapInstance } from './interface'; export declare class IBMapGlobalStatic { private _name; constructor(name?: string); get name(): string; get global(): any; setGlobalName(name: string): void; createMap(options: any): Promise; } export declare const IBMapGlobalInstance: IBMapGlobalStatic;