UNPKG

scrivly

Version:

A powerful, feature-rich rich text editor for React with TypeScript support

11 lines 379 B
import type React from "react"; import type { ImageData } from "../types/editor"; interface ImageModalProps { onInsertImage: (imageData: ImageData) => void; onClose: () => void; allowUpload?: boolean; onImageUpload?: (file: File) => Promise<string>; } export declare const ImageModal: React.FC<ImageModalProps>; export {}; //# sourceMappingURL=ImageModal.d.ts.map