import { type Editor } from "@tiptap/react"; import type React from "react"; export interface WYSIWYGEditorProps { /** Initial HTML content */ initialValue?: string; /** Callback when content changes */ onChange?: (html: string, json: any) => void; /** Placeholder text */ placeholder?: string; /** Height of the editor */ height?: string | number; /** Additional CSS class */ className?: string; /** Whether the editor is read-only */ readOnly?: boolean; /** Enable tables */ enableTables?: boolean; /** Enable task lists */ enableTaskLists?: boolean; /** Custom toolbar */ toolbar?: (editor: Editor) => React.ReactNode; } export declare const WYSIWYGEditor: React.FC; //# sourceMappingURL=wysiwyg-editor.d.ts.map