/** * 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 Migrate extends Command { static description: string; static examples: string[]; static flags: { 'no-dependencies': import("@oclif/parser/lib/flags").IBooleanFlag; 'no-scripts': import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: args.IArg[]; run(): Promise; } //# sourceMappingURL=migrate.d.ts.map