export type CipOutputFormat = 'csv' | 'json' | 'table'; export declare function toCsv(columns: string[], rows: Array>): string; /** * Write CSV-formatted rows to stdout. Uses `ux.stdout` so that test helpers * (`stubCommandConfigAndLogger`/`runSilent`) can capture or silence output — * unlike a raw `process.stdout.write`, which bypasses oclif redirection. */ export declare function writeCsv(columns: string[], rows: Array>): void; /** Pretty-print a JSON output through `ux.stdout` for the same testability reasons as {@link writeCsv}. */ export declare function writeJson(value: unknown): void; export declare function renderTable(columns: string[], rows: Array>): void;