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