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; collectionName: string; schematicName: string; parseArguments(schematicOptions: string[], schema: Option[]): Promise; run(options: UpdateCommandSchema & Arguments): Promise; }