/** @typedef {typeof __propDef.props} BellAlertProps */ /** @typedef {typeof __propDef.events} BellAlertEvents */ /** @typedef {typeof __propDef.slots} BellAlertSlots */ export default class BellAlert extends SvelteComponent<{ [x: string]: any; }, { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type BellAlertProps = typeof __propDef.props; export type BellAlertEvents = typeof __propDef.events; export type BellAlertSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};