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