import React from 'react';
export interface IVeltNotificationsPanelContentAllListItemProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    notificationIndex?: string;
    date?: string;
    defaultCondition?: boolean;
    listItemTemplate?: any;
}
declare const VeltNotificationsPanelContentAllListItem: React.FC<IVeltNotificationsPanelContentAllListItemProps>;
export default VeltNotificationsPanelContentAllListItem;
