/// interface NotificationToastProps { title: string; message: string; show: boolean; delay?: number; onClose: () => void; } declare const NotificationToast: ({ title, message, show, onClose, delay }: NotificationToastProps) => JSX.Element; export default NotificationToast;