import React from 'react'; import { DeepThinking } from '@agentscope-ai/chat'; interface IProps { data: { block?: boolean; title?: string; subTitle?: string; loading?: boolean; content?: string; className?: string; defaultOpen?: boolean; open?: boolean; autoCloseOnFinish?: boolean; maxHeight?: number; } } export default function (props: IProps) { return }