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