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