/// import { EditorProps } from '@monaco-editor/react'; export declare const ReactDiffEditor: import("react").FC; export interface ReactMonacoEditorProps extends Omit { readOnly?: boolean; loading?: boolean; onChange?: (v: string) => void; name?: string; } declare function ReactMonacoEditor({ loading, height, width, theme, language, readOnly, value, options, onChange, onMount, }: ReactMonacoEditorProps): JSX.Element; export default ReactMonacoEditor;