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