import type React from 'react'; import type { GoalSummary } from '../app-state.js'; export interface GoalPanelProps { goal: GoalSummary; /** Start the AutonomousCoordinator with the given goal text. */ onCoordinatorStart?: ((goal: string) => void) | undefined; /** Stop the AutonomousCoordinator. */ onCoordinatorStop?: (() => void) | undefined; /** Whether the coordinator is currently running. */ coordinatorRunning?: boolean | undefined; } /** * Full-screen overlay showing the current goal, deliverables checklist, * and progress bar. Opened with F9. */ export declare function GoalPanel({ goal, onCoordinatorStart, onCoordinatorStop, coordinatorRunning, }: GoalPanelProps): React.ReactElement; //# sourceMappingURL=goal-panel.d.ts.map