import { INotification } from '@magicbell/react-headless';
export interface Props {
    notification: INotification;
}
/**
 * Component that renders the context menu
 *
 * @example
 * <NotificationState notification={notification} />
 */
export default function NotificationMenu({ notification }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
