import type { QAProps } from '@gravity-ui/uikit'; import type { EditorInt } from "./Editor.js"; export type MarkupEditorComponentProps = QAProps & { editor: EditorInt; autofocus?: boolean; className?: string; children?: React.ReactNode; }; export declare const MarkupEditorComponent: React.FC;