import { ChangeEvent, FocusEvent, MouseEvent } from 'react'; export interface TextEditorProps { onBlur?: (e: FocusEvent) => void; onChange?: (e: ChangeEvent) => void; onFocus?: (e: FocusEvent) => void; onSubmit?: (e: MouseEvent) => void; value?: string; } declare function TextEditor(props: TextEditorProps): JSX.Element; export default TextEditor;