import type { DashboardTheme } from "../theme.js"; /** * Render a Unicode block progress bar. * Color-coded: green < 70%, gold 70-85%, red > 85%. */ export declare function renderProgressBar(value: number, max: number, width: number, th: DashboardTheme): string; /** * Render a compact turn progress with bar. * Example output: ⟳5≤10 ████▓░░░ */ export declare function renderTurnProgress(turnCount: number, maxTurns: number | null | undefined, barWidth: number, th: DashboardTheme): string;