import type { Command, CommandOptions } from '@teambit/cli'; import type { InstallMain } from './install.main.runtime'; export default class UninstallCmd implements Command { private install; name: string; description: string; extendedDescription: string; arguments: { name: string; description: string; }[]; alias: string; group: string; options: CommandOptions; constructor(install: InstallMain); report([packages]: [string[]]): Promise; }