import { Knex } from 'knex';
/**
 * An array of all migrations, in order.
 */
interface Migration {
    up: (knex: Knex) => Promise<void>;
    down: (knex: Knex) => Promise<void>;
}
declare const allMigrations: Migration[];
export default allMigrations;
//# sourceMappingURL=all-migrations.d.ts.map