import React from 'react';
export interface IVeltNotificationsPanelContentListItemUnreadProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    notificationId?: string;
    notificationIndex?: string;
    defaultCondition?: boolean;
    notification?: any;
    isDefault?: boolean;
}
declare const VeltNotificationsPanelContentListItemUnread: React.FC<IVeltNotificationsPanelContentListItemUnreadProps>;
export default VeltNotificationsPanelContentListItemUnread;
