/** * Render helpers shared by the fabric read commands. * * These run inside a command's `render` (post-return, human output only). * `--json` is handled globally by the CLI runner, which routes the command's * result through the JSON renderer instead — so these helpers never deal with * the json case. They just turn returned data into a pretty, coloured table. */ type Cell = string | number | null | undefined; /** Dim, secondary text (hints, empty-state lines, labels). */ export declare const dim: (s: string) => string; /** Status / change colours — mirror the console UI: green = good/added, * amber = in-flight/changed, red = failed/removed. */ export declare const added: (s: string) => string; export declare const changed: (s: string) => string; export declare const removed: (s: string) => string; /** Colour a status token by its meaning (falls back to dim). */ export declare function statusColor(status: string): string; /** Space-padded aligned columns with a dim header — the default human table. */ export declare function table(headers: string[], rows: Cell[][]): string; /** Aligned `key value` lines with dim keys. */ export declare function keyValue(rows: [string, string][]): string; export {};