export interface TableOptions { head?: string[]; colWidths?: number[]; wordWrap?: boolean; } export declare function createTable(rows: string[][], options?: TableOptions): string; export declare function statusTable(files: { name: string; status: string; }[]): string; export declare function branchTable(branches: { name: string; current: boolean; commit: string; }[]): string; export declare function statsTable(stats: { label: string; value: string | number; }[]): string; export declare function commitTable(commits: { hash: string; message: string; date: string; }[]): string; //# sourceMappingURL=table.d.ts.map