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