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