import { UtilsService } from '../utils/utils.service';
export declare class MigrateCommands {
    private readonly utilsService;
    private readonly migrateConfig;
    constructor(utilsService: UtilsService);
    migrate({ dryRun, databaseUrl, locations, historyTable, sqlMigrationSuffixes, }: {
        dryRun?: boolean;
        databaseUrl?: string;
        locations?: string;
        historyTable?: string;
        sqlMigrationSuffixes?: string;
    }): Promise<void>;
}
