/** * Print a formatted table to stdout. */ export declare function printTable(headers: string[], rows: string[][]): void; /** * Print a list of key-value pairs, formatted for single-item detail views. */ export declare function printKeyValue(pairs: [string, string][]): void;