UNPKG

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.

9 lines 296 B
import React from 'react'; interface ImageDialogProps { isOpen: boolean; onClose: () => void; onInsert: (url: string, alt: string, caption?: string) => void; } declare const ImageDialog: React.FC<ImageDialogProps>; export default ImageDialog; //# sourceMappingURL=ImageDialog.d.ts.map