react-latex-editor
Version:
A professional React rich text editor with mathematical equation support, built on TipTap with MathLive integration. Production-ready with TypeScript support, accessibility features, and industrial-grade error handling.
9 lines • 318 B
TypeScript
import { default as React } from 'react';
interface ImagePickerDialogProps {
isOpen: boolean;
onClose: () => void;
onImageSelect: (urls: string[]) => void;
}
declare const ImagePickerDialog: React.FC<ImagePickerDialogProps>;
export default ImagePickerDialog;
//# sourceMappingURL=ImagePickerDialog.d.ts.map