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