import { FC } from "react"; interface MonacoEditorProps { onChange: (value: string) => void; value: string; options: { language: string; }; disabled?: boolean; } declare const MonacoEditor: FC; export default MonacoEditor;