/** @typedef {typeof __propDef.props} LocationProps */ /** @typedef {typeof __propDef.events} LocationEvents */ /** @typedef {typeof __propDef.slots} LocationSlots */ export default class Location extends SvelteComponentTyped<{ properties: any; settings: any; placeId: any; }, { [evt: string]: CustomEvent; }, {}> { } export type LocationProps = typeof __propDef.props; export type LocationEvents = typeof __propDef.events; export type LocationSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { properties: any; settings: any; placeId: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};