import React from "react"; import { EditorProps } from "@monaco-editor/react"; export type CodeEditorProps = EditorProps; export default function CodeEditor({ ...props }: CodeEditorProps): React.JSX.Element;