/** @typedef {typeof __propDef.props} WatchProps */ /** @typedef {typeof __propDef.events} WatchEvents */ /** @typedef {typeof __propDef.slots} WatchSlots */ export default class Watch extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type WatchProps = typeof __propDef.props export type WatchEvents = typeof __propDef.events export type WatchSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}