import React from 'react';
export interface IVeltNotificationsPanelContentDocumentsListItemUnreadProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    notificationIndex?: string;
    documentId?: string;
    defaultCondition?: boolean;
    isDefault?: boolean;
}
declare const VeltNotificationsPanelContentDocumentsListItemUnread: React.FC<IVeltNotificationsPanelContentDocumentsListItemUnreadProps>;
export default VeltNotificationsPanelContentDocumentsListItemUnread;
