import { default as React } from 'react'; import { ThoughtNode, ThoughtChainRenderMode } from '../thought_chain_types'; export interface ThoughtChainSectionProps { /** 区块标题,例如“理解规划完成”、“召回成功”等 */ title: string; /** 区块描述文案,可选 */ content?: string; /** 该区块下包含的节点列表 */ nodes: ThoughtNode[]; /** 渲染模式:实时 / 历史,只影响细节样式与动效 */ mode?: ThoughtChainRenderMode; } declare const ThoughtChainSection: React.FC; export default ThoughtChainSection;