import { default as React } from 'react'; import { PlanData } from '../api/types'; interface PlanningDisplayProps { plan: PlanData; collapsed?: boolean; } /** * PlanningDisplay Component * * Displays the agent's plan with progress tracking. * Shows goal, steps with status indicators, and overall progress. */ declare const PlanningDisplay: React.FC; export default PlanningDisplay;