import type { FormItemProps } from 'antd/lib/form'; import React from 'react'; export interface MyRichTextEditorProps extends FormItemProps { visible?: boolean; disabled?: boolean; value?: string; height?: any; getCompPropMapState?: any; compId?: any; onChange?: (value: string) => void; onValueRelease?: (value: string) => void; className?: any; name?: string; fieldName?: string; required: boolean; regexp?: any; hidden?: boolean; message?: string; selfSpan?: number; colSpan?: number; imageType?: string; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; style?: React.CSSProperties; isFormChild?: boolean | undefined; heightType?: string; maxHeight?: string | number; minHeight?: string | number; readOnly: boolean; rules: any[]; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis?: any; formFieldsRef: any; richTextRef: any; language: string; } declare const RichTextEditor: React.ForwardRefExoticComponent>; export default RichTextEditor;