import type { Command, CommandOptions } from '@teambit/cli'; import type { InstallMain } from './install.main.runtime'; type UpdateCmdOptions = { yes?: boolean; patterns?: string[]; major?: boolean; minor?: boolean; patch?: boolean; semver?: boolean; }; export default class UpdateCmd implements Command { private install; name: string; description: string; extendedDescription: string; helpUrl: string; alias: string; group: string; arguments: { name: string; description: string; }[]; options: CommandOptions; constructor(install: InstallMain); report([patterns]: [string[]], options: UpdateCmdOptions): Promise; } export {};