/** * Props for the RichTextEditor component * @interface RichTextEditorProps * @property {function} onChange - Optional callback triggered when editor content changes * @property {boolean} displayOutput - Optional flag to show the output mode * @property {string} placeholder - Optional placeholder text when editor is empty * @property {string} initialContent - Optional initial HTML content for the editor * @property {boolean} allowBase64Images - Optional flag allowing base64 image sources when parsing HTML */ interface RichTextEditorProps { onChange?: (value: string) => void; displayOutput?: boolean; placeholder?: string; initialContent?: string; value?: string; allowBase64Images?: boolean; } export declare const RichTextEditor: (props: RichTextEditorProps) => React.JSX.Element | null; export {};