/** @typedef {typeof __propDef.props} BiWatchProps */ /** @typedef {typeof __propDef.events} BiWatchEvents */ /** @typedef {typeof __propDef.slots} BiWatchSlots */ export default class BiWatch extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiWatchProps = typeof __propDef.props; export type BiWatchEvents = typeof __propDef.events; export type BiWatchSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};