UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

17 lines (16 loc) 513 B
import React from 'react'; import { MarkdownRenderProps } from '../../../aiChatDialogue/interface'; export interface ReasoningWidgetProps { status?: string; summary?: { text?: string; type?: string; }[]; content?: { text?: string; type?: string; }[]; markdownRenderProps?: MarkdownRenderProps; customRenderer?: (props: ReasoningWidgetProps) => React.ReactNode; } export declare const ReasoningWidget: (props: ReasoningWidgetProps) => React.JSX.Element;