/** * These are the main group. * It's possible to create new groups by calling `cliMain.registerGroup()`. */ export declare const groups: { 'workspace-setup': string; collaborate: string; 'info-analysis': string; 'workspace-tools': string; 'component-config': string; 'component-development': string; dependencies: string; 'version-control': string; testing: string; 'run-serve': string; system: string; auth: string; advanced: string; ungrouped: string; start: string; development: string; discover: string; info: string; general: string; }; export type Group = keyof typeof groups; type GroupDescription = string; export type GroupsType = { [groupName: string]: GroupDescription; }; export {};