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