import type { IGlobalConfigService, IMapConfig, IMapService, IMapWrapper, RaContainer } from '@ramap/ra-core'; export default class BaseMapWrapper implements IMapWrapper { protected configService: IGlobalConfigService; protected config: Partial; constructor(config: Partial); setContainer(mapletContainer: RaContainer, id: string | HTMLDivElement): void; protected getServiceConstructor(): new (...args: any[]) => IMapService; }