/** * @fileoverview 代码编辑器插件主文件 * 提供基于 Ace Editor 的代码编辑功能,支持多种编程语言语法高亮 * @author Code Plugin Team */ import React from 'react'; import { CodeNode, ElementProps } from '../../MarkdownEditor/el'; /** * 代码编辑器组件 * 已重构为更小的组件,提升可维护性 */ export declare function CodeElement(props: ElementProps): React.JSX.Element | null;