export interface CommandOption { alias: string[]; description: string; opts: string[]; help: string; } export interface CLICommands { [command: string]: CommandOption; } export declare const commands: CLICommands; export declare function twoColFromJson(json: any, rightSidePropertyName: string, leftside?: Function): string;