/// <reference types="react" />
import type { EditorProps } from '@monaco-editor/react';
import type { Variant } from 'antd/es/config-provider';
export interface EditorProps2 extends EditorProps {
    onBlur?: (input: string, event: any) => void;
    placeholder?: string;
    variant?: Variant;
    enableOutline?: boolean;
    version?: string;
}
export declare const MonacoEditor2: React.FC<EditorProps2>;
