/** @typedef {typeof __propDef.props} BackgroundMapProps */ /** @typedef {typeof __propDef.events} BackgroundMapEvents */ /** @typedef {typeof __propDef.slots} BackgroundMapSlots */ export default class BackgroundMap extends SvelteComponentTyped<{ settings: any; properties: any; placeId?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type BackgroundMapProps = typeof __propDef.props; export type BackgroundMapEvents = typeof __propDef.events; export type BackgroundMapSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { settings: any; properties: any; placeId?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};