export interface HelpEntry { cmd: string; desc: string; } export interface HelpSection { title: string; entries: HelpEntry[]; } export declare function helpTable(sections: HelpSection[]): string;