import { SvelteComponent } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type BellIconProps = typeof __propDef.props; export type BellIconEvents = typeof __propDef.events; export type BellIconSlots = typeof __propDef.slots; export default class BellIcon extends SvelteComponent { } export {};