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