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