import { INotification } from '@magicbell/react-headless'; export interface Props { notification: INotification; } /** * Context menu for the clickable notification. Renders a menu with two items: * "Mark as read" and "Delete". * * @example * */ export default function NotificationContextMenu({ notification }: Props): import("@emotion/react/jsx-runtime").JSX.Element;