import type React from 'react'; /** * F8 — Process List Monitor. * * Live view of all background bash/exec processes tracked by the global * ProcessRegistry. This panel OWNS the keyboard while open: * every keystroke is captured here and NEVER reaches the chat input, * because handleKey in app.tsx returns early when processListOpen is true * (before it can modify the input buffer). This two-layer design — * ProcessList's own useInput for shortcuts, handleKey's guard to suppress * everything else — keeps the input field completely unaffected. */ export declare function ProcessListMonitor(): React.ReactElement; //# sourceMappingURL=process-list.d.ts.map