/** F11 — project-level AutonomousCoordinator monitor. */ import type React from 'react'; import type { State } from '../app-state.js'; export interface CoordinatorPanelProps { coordinator: State['coordinator']; /** 1s clock tick so elapsed times stay live. */ nowTick: number; /** Called when the user presses Esc or q to close the panel. */ onClose: () => void; } export declare function CoordinatorPanel({ coordinator, nowTick, onClose, }: CoordinatorPanelProps): React.ReactElement; //# sourceMappingURL=coordinator-panel.d.ts.map