/*! * Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. */ import { Command, flags } from '@oclif/command'; export default class AddCds extends Command { static description: string; static examples: string[]; static flags: { force: import("@oclif/parser/lib/flags").IBooleanFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; verbose: import("@oclif/parser/lib/flags").IBooleanFlag; projectName: flags.IOptionFlag; skipInstall: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; description: string; }[]; run(): Promise; private getOptions; private printSuccessMessage; }