import { Query } from "../query"; export declare class MigrationOffice { /** * Master Mind Collection name */ collection: string; /** * Connection Instance */ query: Query; /** * Check if the given migration name is already migrated */ isMigrated(migrationName: string): Promise; /** * Migrate the given migration name */ migrate(migrationName: string): Promise; /** * Drop all migrations */ drop(): Promise; /** * Drop the given migration name */ dropMigration(migrationName: string): Promise; /** * Get migrations list */ list(): Promise; } export declare const migrationOffice: MigrationOffice; //# sourceMappingURL=migration-office.d.ts.map