import { type IPackage } from "../../package/package.js"; import { type IFormatter } from "../../utils/formatter.js"; export declare function printDependencyTree(p: IPackage, formatter: IFormatter): void; export declare class LoopUtilities { private _p; constructor(_p: IPackage); get loopPathString(): string; get loops(): IPackage[]; get loopPathMap(): ReadonlyMap>; get distinctLoopCount(): number; }