import type { ResolvedChanges, UpdateReference } from './types/types';
/** Downloads all the package.json files from the packages, to be updated, and reduces the information from the dt property to one ResolvedChanges object. */
export declare function fetchingChangesInfo(updateReferences: Record<string, UpdateReference>, root: string): Promise<ResolvedChanges>;
