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