import React from 'react'; import type { DiffEditorProps, DiffOnMount } from '@monaco-editor/react'; import type { EditorSettingsState } from '../code-compare-editor-settings'; export type CodeCompareEditorProps = { language: string; handleEditorDidMount: DiffOnMount; Loader: React.ReactNode; modifiedFileContent?: string; originalFileContent?: string; originalPath: string; modifiedPath: string; DiffEditor: React.FC; fullScreen?: boolean; } & EditorSettingsState; export declare function CodeCompareEditor({ modifiedFileContent, originalFileContent, originalPath, modifiedPath, language, handleEditorDidMount, ignoreWhitespace, wordWrap, diffOnly, editorViewMode, Loader, DiffEditor, fullScreen, }: CodeCompareEditorProps): React.JSX.Element;