import { Command } from '@oclif/core';
export default class Migrate extends Command {
    static description: string;
    static hidden: boolean;
    static args: {
        name: string;
        required: boolean;
        default: string;
    }[];
    static examples: string[];
    static strict: boolean;
    run(): Promise<void>;
}
