import React from 'react';
import { WhiteBoxProcessInterface } from '../ThoughtChainList';
import { BubbleProps } from './type';
type BubbleBeforeNodeProps = {
bubble: BubbleProps<{
content: string;
uuid: number;
extra: {
white_box_process: WhiteBoxProcessInterface[] | WhiteBoxProcessInterface;
preMessage: {
content: string;
};
};
}>;
className?: string;
style?: React.CSSProperties;
};
/**
* BubbleBeforeNode 组件
*
* 在聊天气泡之前渲染思维链或任务列表,显示AI的思考过程
*
* @example
* ```tsx
*
* ```
*/
export declare const BubbleBeforeNode: React.FC;
export {};