/** @typedef {typeof __propDef.props} LightBulbIconProps */ /** @typedef {typeof __propDef.events} LightBulbIconEvents */ /** @typedef {typeof __propDef.slots} LightBulbIconSlots */ export default class LightBulbIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type LightBulbIconProps = typeof __propDef.props; export type LightBulbIconEvents = typeof __propDef.events; export type LightBulbIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};