mjeditor
Version:
A modern, plugin-extensible rich text editor for React with beautiful custom dialogs, notification system, and comprehensive editing features. Built with Slate.js for maximum flexibility.
11 lines • 334 B
TypeScript
import React from 'react';
interface NotificationProps {
message: string;
type?: 'success' | 'error' | 'warning' | 'info';
duration?: number;
onClose?: () => void;
isVisible: boolean;
}
declare const Notification: React.FC<NotificationProps>;
export default Notification;
//# sourceMappingURL=Notification.d.ts.map