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