import { default as React } from 'react'; import { NotificationItemProps } from '../item'; export interface NotificationItemsListProps { className?: string; items?: Array; isMobile?: boolean; onClick?: (itemId: string) => void; onClose?: (itemId: string) => void; onMarkAsRead?: (itemId: string) => void; } export declare const NotificationItemsList: ({ items, className, isMobile, onClick, onClose, onMarkAsRead, }: NotificationItemsListProps) => React.JSX.Element | null; export default NotificationItemsList;