/** * 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 } from '@oclif/command'; import { args } from '@oclif/parser'; export default class Bundle extends Command { static description: string; static examples: string[]; static args: args.IArg[]; static flags: { watch: import("@oclif/parser/lib/flags").IBooleanFlag; production: import("@oclif/parser/lib/flags").IBooleanFlag; intern: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; } //# sourceMappingURL=bundle.d.ts.map