import React from "react"; interface IProps { value: string; language: string; editorDidMount: (editor: any, ref: React.RefObject) => any; onChange?: (ev: any, value: string) => any; editorOptions?: any; line?: number; loading?: Element | string; width?: string | number; height?: string | number; controlled?: boolean; } declare const MonacoEditor: React.FC; export default MonacoEditor;