/** * Terminal text helpers shared by the human-facing commands. */ /** * Pad to a target terminal width. CJK characters occupy two columns but count as * one code unit, so String.padEnd misaligns any column that contains them. */ export declare function padDisplay(text: string, width: number): string;