import type { L7Container } from '../../inversify.config'; import type { IPopup, IPopupService } from './IPopupService'; export default class PopupService implements IPopupService { private scene; private mapsService; private popups; private unAddPopups; get isMarkerReady(): HTMLElement; removePopup(popup: IPopup): void; destroy(): void; addPopup(popup: IPopup): void; initPopup(): void; init(scene: L7Container): void; }