import { SvelteComponent } from "svelte"; type NotificationBarProps = { notification: Notification; }; import type { Notification } from "magicbell-js/user-client"; declare const __propDef: { props: { notification: NotificationBarProps["notification"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type InlineNotificationBarProps = typeof __propDef.props; export type InlineNotificationBarEvents = typeof __propDef.events; export type InlineNotificationBarSlots = typeof __propDef.slots; export default class InlineNotificationBar extends SvelteComponent { } export {};