/** @typedef {typeof __propDef.props} BellOffProps */ /** @typedef {typeof __propDef.events} BellOffEvents */ /** @typedef {typeof __propDef.slots} BellOffSlots */ export default class BellOff extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type BellOffProps = typeof __propDef.props; export type BellOffEvents = typeof __propDef.events; export type BellOffSlots = 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 {};