import type { ProjectFile } from './types';
export declare const GLOBAL_JSON = "global.json";
export declare const NUGET_CENTRAL_FILE = "Directory.Packages.props";
export declare const MSBUILD_CENTRAL_FILE = "Packages.props";
/**
 * Get all leaf package files of ancestry that depend on packageFileName.
 */
export declare function getDependentPackageFiles(packageFileName: string, isCentralManagement?: boolean, isGlobalJson?: boolean): Promise<ProjectFile[]>;
