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