import type React from 'react'; export interface PhasePanelProps { /** Per-phase state from the App reducer. */ phases: Record; /** Active running phase IDs. */ runningPhaseIds: string[]; /** nowTick for elapsed time display. */ nowTick: number; } /** * Goal sidebar panel — shown below fleet panel when Goal is active. * Compact 2-line-per-phase view optimized for the TUI layout. * Unlike PhaseMonitor (an overlay), PhasePanel is always visible while active. */ export declare function PhasePanel({ phases, nowTick }: PhasePanelProps): React.ReactElement | null; //# sourceMappingURL=phase-panel.d.ts.map