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