/// import type { editor } from 'monaco-editor'; import { ISingleMonacoEditorProps, IDiffMonacoEditorProps } from './helper'; export * from './monaco'; export * from './controller'; export declare const SingleMonacoEditorComponent: ((props: ISingleMonacoEditorProps) => JSX.Element) & { displayName: string; defaultProps: { width: string; height: number; defaultValue: string; language: string; options: editor.IStandaloneEditorConstructionOptions; editorDidMount: typeof noop; editorWillMount: typeof noop; onChange: typeof noop; requireConfig: {}; }; MonacoDiffEditor: ((props: IDiffMonacoEditorProps) => JSX.Element) & { displayName: string; defaultProps: { width: string; height: number; defaultValue: string; language: string; options: editor.IStandaloneEditorConstructionOptions; editorDidMount: typeof noop; editorWillMount: typeof noop; onChange: typeof noop; requireConfig: {}; }; }; }; export default SingleMonacoEditorComponent; declare function noop(): void;