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