import type { EditorInt } from "./Editor.js"; export type WysiwygEditorComponentProps = { className?: string; autofocus?: boolean; editor: EditorInt; children?: React.ReactNode; }; export declare const WysiwygEditorComponent: React.FC;