import type { FileMap } from '@dynatrace/devkit';
import type { UpdateReference } from './types/types';
/** Updates the package.json dependencies with the latest package versions */
export declare function updatePackageJson(
/** Update references */
updateReferences: Record<string, UpdateReference>, 
/** The file map */
fileMap: FileMap): FileMap;
