import { SvelteComponent } from "svelte"; type Props = { index: number; data: Notification; }; import type { Notification } from "magicbell-js/user-client"; declare const __propDef: { props: { data: Props["data"]; index: Props["index"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type InboxItemProps = typeof __propDef.props; export type InboxItemEvents = typeof __propDef.events; export type InboxItemSlots = typeof __propDef.slots; export default class InboxItem extends SvelteComponent { } export {};