import type { ImageData } from "quill-image-drop-and-paste"; import "quill/dist/quill.snow.css"; import type ReactQuillNew from "react-quill-new"; export declare function RichTextArea(props: ReactQuillNew.ReactQuillProps & { value?: string; toolbar?: any; customToolbar?: any[]; onImageUpload?(image: ImageData): Promise; onImageUploadError?(error: unknown): void; onImageUploadingChange?(value: boolean): void; }): import("react").JSX.Element;