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