import { Migration } from './../migration';
/**
 * Add a migration package column to the migration table so that
 *  migrations can be scoped by package
 */
export declare class AddMigrationPackageColumn extends Migration {
    up(): Promise<void>;
    down(): Promise<void>;
}
