import type { JsonObj } from '../../result.js'; import { BaseCommand } from '../../index.js'; export default class MigrateMyCode extends BaseCommand { static description: string; static examples: string[]; static flags: { 'dry-run': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; from: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; }; run(): Promise; }