/** * Shared formatting helpers used across per-watcher detail views. * * Kept package-internal — none of these are re-exported from the package * entry. They're tiny, side-effect free, and only meaningful within the * dashboard rendering pipeline. */ /** HTML-escape a value for use inside raw template strings. */ export declare function escape(s: string): string; /** Format a Date (or ISO string) using the browser's locale. */ export declare function formatTimestamp(d: Date | string): string; /** Format a byte count with the smallest unit that keeps the magnitude ≥ 1. */ export declare function formatBytes(bytes: number): string; /** Tailwind class string for an HTTP status badge — colored by status range. */ export declare function statusColor(status: number): string; //# sourceMappingURL=format.d.ts.map