import { LitElement } from 'lit'; export default class SlMap extends LitElement { static styles: import("lit").CSSResult; mapWrapper: HTMLElement; mapInstance: any; popup: any; boundShowPositionInfo: any; apikey: string; showAddress: boolean; latitude: number; longitude: number; addOpenStreetMapLayer(): void; showPositionInfo(e: any): void; firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'sl-map': SlMap; } }