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