import React from 'react'; import type { Option } from 'react-select'; import './notificationSelector.less'; export interface INotificationSelectorProps { fieldName?: string; onNotificationTypeChange?: (type: string) => void; type: string; } export interface INotificationSelectorState { notificationTypes: Option[]; } export declare class NotificationSelector extends React.Component { constructor(props: INotificationSelectorProps); private NotificationDetailFields; render(): JSX.Element; }