/** @typedef {typeof __propDef.props} TimerProps */ /** @typedef {typeof __propDef.events} TimerEvents */ /** @typedef {typeof __propDef.slots} TimerSlots */ export default class Timer extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type TimerProps = typeof __propDef.props; export type TimerEvents = typeof __propDef.events; export type TimerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};