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