import type { Command, CommandOptions } from '@teambit/cli'; import type { GlobalConfigMain } from './global-config.main.runtime'; export declare class GlobalsCmd implements Command { private globalConfig; name: string; description: string; extendedDescription: string; group: string; helpUrl: string; alias: string; options: CommandOptions; constructor(globalConfig: GlobalConfigMain); report(): Promise; json(): Promise<{ 'Global Dir': string; 'Log file': string; 'Global Scope Dir': string; 'Config Dir': string; 'Capsules Dir': string; }>; }