import React from 'react'; /** * Processor for the tag in AI responses. * Renders the thinking process inside a ThinkBox component. * * @param children - The thinking content * @param thinkingEnded - Whether the thinking phase has completed */ declare const ThinkTagProcessor: ({ children, thinkingEnded, }: { children: React.ReactNode; thinkingEnded: boolean; }) => React.JSX.Element; export default ThinkTagProcessor;