import type { UpdateReference } from './types/types';
/** Get a list of packages with their latest version that should be updated */
export declare function getLatestPackageVersions(
/** The project root path */
root: string): Promise<Record<string, UpdateReference>>;
/** Returns true if the package is dt-app or belongs to the @dynatrace namespace and has a valid semver version */
export declare function isValidDtDependency(dependency: [string, string]): boolean;
