/** * TUI recovery status panel. * * Adapted from the CLI renderer's `renderRecovery()` in status-format.ts. * Renders only when `snap.recovery` is present and totalAttempts > 0. * * @module */ import type { ThemeColors } from "../helpers.ts"; import type { MonitorSnapshot } from "../../cli/commands/monitor/monitor-reader.ts"; export declare function renderRecoveryStatus(props: { c: ThemeColors; snap: MonitorSnapshot | null; }): any; //# sourceMappingURL=RecoveryStatus.d.ts.map