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; parseArguments(_schematicOptions: string[], _schema: Option[]): Promise; run(options: UpdateCommandSchema & Arguments): Promise; checkCleanGit(): boolean; }