/** * 处理内联代码节点 * @param currentElement - 当前处理的内联代码元素 * @returns 返回格式化的内联代码节点对象,支持占位符和初始值 */ export declare const handleInlineCode: (currentElement: any) => any; /** * 处理分割线节点 * @returns 返回格式化的分割线节点对象 */ export declare const handleThematicBreak: () => { type: string; children: { text: string; }[]; }; /** * 处理定义节点 * @param currentElement - 当前处理的定义元素,包含标签和URL * @returns 返回格式化的定义段落节点对象 */ export declare const handleDefinition: (currentElement: any) => { type: string; children: { text: string; }[]; };