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