import React from 'react'; import { EditorProps as CKEditorProps } from '@choerodon/components/lib/ck-editor'; declare type EditorProps = Omit & { outside?: boolean; projectId?: string; }; declare const Editor: React.FC; export default Editor;