import React from 'react'; import { UiPopupHandlers } from '..'; interface NotificationPopupProps { closePopup: (event: any) => void; message: string; popupRef: React.MutableRefObject | React.RefObject; } export declare const NotificationPopup: React.FC; export {};