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