import type { FileMap } from '@dynatrace/devkit';
import type { MigrationChange } from './types/types';
/** Runs the migrations for all the apps listed in the apps record. */
export declare function runMigrations(
/** App paths (monorepo support) */
apps: Record<string, FileMap>, 
/** Breaking changes containing migrations */
migrationChanges: MigrationChange[], 
/** The package name */
packageName: string, 
/** The package path */
packagePath: string): Promise<Record<string, FileMap>>;
