import { default as React } from 'react'; import { TYPE } from '../../../utils/notification-utils'; import { NotificationProps } from '../base'; export interface NotificationItemProps extends Omit { className?: string; isMobile?: boolean; onShowingButtons?: () => void; showButtons?: boolean; type?: (typeof TYPE)[keyof typeof TYPE]; } export declare const NotificationItem: ({ className, status, type, isMobile, onClick, onClose, onMarkAsRead, onShowingButtons, showButtons, ...rest }: NotificationItemProps) => React.JSX.Element; export default NotificationItem;