import React from 'react'; import type { ListenerAction } from 'jamis-core'; import type { DiffControlSchema, FormControlProps } from '../types'; export type DiffEditorRendererEvent = 'blur' | 'focus'; export interface DiffEditorProps extends FormControlProps, Omit { } export declare class DiffEditor extends React.Component { static defaultProps: Partial; state: { focused: boolean; }; editor: any; monaco: any; originalEditor: any; modifiedEditor: any; toDispose: Array; divRef: React.RefObject; constructor(props: DiffEditorProps); componentWillUnmount(): void; doAction(action: ListenerAction, args: any): void; focus(): void; handleFocus(): void; handleBlur(): void; componentDidUpdate(prevProps: any): void; editorFactory(containerElement: any, monaco: any, options: any): any; handleEditorMounted(editor: any, monaco: any): void; handleModifiedEditorChange(): void; prevHeight: number; updateContainerSize(editor: any, monaco: any): void; render(): JSX.Element; } export declare class DiffEditorControlRenderer extends DiffEditor { static defaultProps: { [x: string]: any; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; disabled?: boolean; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: FormControlProps) => JSX.Element; label?: string | false | import("jamis-core").Schema; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholder?: string; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; options?: any; language?: string; diffValue?: import("../types").SchemaTokenizeableString; }; }