/** @typedef {typeof __propDef.props} LocationProps */ /** @typedef {typeof __propDef.events} LocationEvents */ /** @typedef {typeof __propDef.slots} LocationSlots */ export default class Location extends SvelteComponentTyped< { [x: string]: 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: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}