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