import { Command, flags } from '@oclif/command'; export default class Migrate extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; destination: flags.IOptionFlag; file: flags.IOptionFlag; sample: import("@oclif/parser/lib/flags").IBooleanFlag; source: flags.IOptionFlag; name: flags.IOptionFlag; clearDataFolder: import("@oclif/parser/lib/flags").IBooleanFlag; clearRefFolder: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }