import { Command, Help, type Option } from 'commander'; /** * Names (in order) of commands that go in the "basic" group. */ export declare const basicCommands: string[]; /** * Help group names for options (pass to `option.helpGroup()`). * * The ordering of entries is used to determine the order of sections in help output. */ export declare const optionGroups: { default: string; /** Options related to the logging output */ logging: string; /** Non-logging options shared between all/most commands */ common: string; }; export declare class CloudpackHelp extends Help { private _isTopLevel; constructor(params: { isTopLevel: boolean; }); visibleCommands(cmd: Command): Command[]; visibleOptions(cmd: Command): Option[]; /** * Group options or child commands for help. */ groupItems(unsortedItems: T[], visibleItems: T[], getGroup: (item: T) => string): Map; } //# sourceMappingURL=CloudpackHelp.d.ts.map