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.

10 lines 301 B
import React from 'react'; interface LinkDialogProps { isOpen: boolean; onClose: () => void; onInsert: (url: string, text: string) => void; selectedText?: string; } declare const LinkDialog: React.FC<LinkDialogProps>; export default LinkDialog; //# sourceMappingURL=LinkDialog.d.ts.map