import { AnalyzedPackageWithVersion, OSRelease } from "../analyzer/types"; import { DepTree } from "../types"; /** @deprecated Should implement a new function to build a dependency graph instead. */ export declare function buildTree(targetImage: string, packageFormat: string, depInfosList: AnalyzedPackageWithVersion[], targetOS: OSRelease): DepTree;