import type { Command, CommandOptions } from '@teambit/cli'; export declare class SystemCmd implements Command { name: string; description: string; extendedDescription: string; group: string; alias: string; options: CommandOptions; commands: Command[]; report([unrecognizedSubcommand]: [string]): Promise; } export declare class SystemLogCmd implements Command { name: string; description: string; group: string; alias: string; loader: boolean; options: CommandOptions; report(): Promise; } export declare class SystemTailLogCmd implements Command { name: string; description: string; extendedDescription: string; group: string; alias: string; loader: boolean; options: CommandOptions; wait(): Promise; }