/** @typedef {typeof __propDef.props} BellProps */ /** @typedef {typeof __propDef.events} BellEvents */ /** @typedef {typeof __propDef.slots} BellSlots */ export default class Bell extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type BellProps = typeof __propDef.props; export type BellEvents = typeof __propDef.events; export type BellSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};