import { Arguments, Option } from '../models/interface'; import { SchematicCommand } from '../models/schematic-command'; import { Schema as UpdateCommandSchema } from './update'; export declare class UpdateCommand extends SchematicCommand { readonly allowMissingWorkspace = true; private readonly packageManager; parseArguments(_schematicOptions: string[], _schema: Option[]): Promise; run(options: UpdateCommandSchema & Arguments): Promise; checkCleanGit(): boolean; /** * Checks if the current installed CLI version is older than the latest version. * @returns `true` when the installed version is older. */ private checkCLILatestVersion; }