interface ThinkBoxProps { content: string; thinkingEnded: boolean; } /** * Component that renders the AI's "thinking process" or reasoning. * Usually displayed as a collapsible box above the assistant message. * * @param content - The reasoning text content * @param thinkingEnded - Whether the thinking phase has finished * @returns {JSX.Element} The rendered reasoning panel */ declare const ThinkBox: ({ content, thinkingEnded }: ThinkBoxProps) => import("react").JSX.Element; export default ThinkBox;