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