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 • 324 B
TypeScript
import React from 'react';
interface HeadingDialogProps {
isOpen: boolean;
onClose: () => void;
onInsert: (type: 'paragraph' | 'heading', level?: 1 | 2 | 3 | 4 | 5 | 6) => void;
}
declare const HeadingDialog: React.FC<HeadingDialogProps>;
export default HeadingDialog;
//# sourceMappingURL=HeadingDialog.d.ts.map