/** * Deterministic restart jitter for tmux-backed workers. * * A shared tmux outage makes many worker processes emit `claude_exit` together. * Delaying teardown by a target-specific amount prevents all of them from * running kill-session / has-session / functional probes in the same instant. * Deterministic jitter is preferable to Math.random here: the value is easy to * unit-test and still distributes independent bmx-* session ids uniformly. */ export declare function tmuxRestartJitterMs(sessionId: string, restartOrdinal: number): number; //# sourceMappingURL=tmux-recovery.d.ts.map