import { Theme } from "@monaco-editor/react"; import { editor } from "monaco-editor"; import { FC } from "react"; import "../../i18n"; interface IProps { height?: string | number; width?: string | number; theme?: Theme; modified?: string; original?: string; renderSideBySide?: boolean; version?: number; onDidLayoutChange?: (modified: editor.EditorLayoutInfo, original: editor.EditorLayoutInfo) => void; } declare const TradingDiffEditor: FC; export default TradingDiffEditor;