import ShoelaceElement from '../../internal/shoelace-element.js'; /** * @since 2.0 * @status experimental * @viur 0.5 * * @slot - The default slot. * @slot example - add Poi in this slot. * * @csspart base - The component's map wrapper. */ export default class SlMap extends ShoelaceElement { static styles: import("lit").CSSResult; mapWrapper: HTMLElement; mapInstance: any; popup: any; boundShowPositionInfo: any; /** mapbox apikey */ apikey: string; /** Use MapBox api for adresses */ showAddress: boolean; /** Start latitude */ latitude: number; /** Start longitude */ longitude: number; addOpenStreetMapLayer(): void; showPositionInfo(e: any): void; firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'sl-map': SlMap; } }