import { default as React } from 'react'; import { ThinkingState } from '../api/types'; interface ThinkingStateDisplayProps { state: ThinkingState; collapsed?: boolean; } /** * ThinkingStateDisplay Component * * Displays the agent's current thinking state including: * - Current thinking phase * - Confidence level * - Thinking budget usage * - Decision count * - Current thought (if available) */ declare const ThinkingStateDisplay: React.FC; export default ThinkingStateDisplay;