import { type Command } from 'commander'; /** * Two-column rows (name + description) with the description word-wrapped to * the terminal under a hanging indent — every boxed section renders through * this so nothing gets clipped on narrow terminals. Chunks are styled * individually, so wrapping never splits an ANSI run. */ export declare function twoColLines(rows: Array<{ name: string; desc: string; }>, termWidth: number): string[]; export declare function configureHelpForProgram(program: Command, version: string): void; //# sourceMappingURL=help.d.ts.map