import type { FormikProps } from 'formik'; import React from 'react'; import type { Option } from 'react-select'; import type { INotification, IPipelineCommand } from '../../domain'; export interface INotificationDetailsProps { formik: FormikProps; notifications: INotification[]; } export interface INotificationDetailsState { notificationTypes: Option[]; } export declare class NotificationDetails extends React.Component { constructor(props: INotificationDetailsProps); private notificationToolTip; private onNotificationTypeChange; render(): JSX.Element; }