import * as react_jsx_runtime from 'react/jsx-runtime'; import React__default from 'react'; interface EditorProps { onChange: (value: string) => void; className?: string; initialValue?: string; autoFocus?: boolean; children?: React__default.ReactNode; onFocus?: () => void; onBlur?: () => void; placeholder?: string; spellCheck?: 'false' | 'true'; } declare const Editor: (props: EditorProps) => react_jsx_runtime.JSX.Element; export { Editor, EditorProps };