import type React from 'react'; import type { GoalSummary } from '../app-state.js'; export interface GoalKanbanPanelProps { projectRoot: string; goal: GoalSummary | null; onClose: () => void; } /** * Goal Kanban panel — a visual progress board shown when a goal is active * and an autonomy engine is running. Displays the goal-linked kanban board * tasks in columns (Backlog → In Progress → Done) with live auto-refresh. */ export declare function GoalKanbanPanel({ projectRoot, goal, onClose, }: GoalKanbanPanelProps): React.ReactElement; //# sourceMappingURL=goal-kanban-panel.d.ts.map