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