/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import { Command, flags } from '@oclif/command'; import { args } from '@oclif/parser'; export default class Pack extends Command { static description: string; static examples: string[]; static flags: { output: flags.IOptionFlag; production: import("@oclif/parser/lib/flags").IBooleanFlag; intern: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: args.IArg[]; run(): Promise; } //# sourceMappingURL=pack.d.ts.map