import 'source-map-support/register'; import { PkgTree, DepType, PropsLookup } from './parsers'; export { buildDepTreeFromPackagesConfig, buildDepTreeFromProjectFile, buildDepTreeFromProjectJson, buildDepTreeFromProjectAssetsJson, buildDepTreeFromFiles, extractTargetFrameworksFromFiles, extractTargetFrameworksFromProjectFile, extractTargetFrameworksFromProjectConfig, containsPackageReference, extractTargetFrameworksFromProjectJson, extractTargetFrameworksFromProjectAssetsJson, extractProps, PkgTree, DepType, }; declare function buildDepTreeFromProjectJson(manifestFileContents: string, includeDev?: boolean): PkgTree; declare function buildDepTreeFromProjectAssetsJson(manifestFileContents: string, targetFramework?: string): PkgTree; declare function buildDepTreeFromPackagesConfig(manifestFileContents: string, includeDev?: boolean): Promise; declare function buildDepTreeFromProjectFile(manifestFileContents: string, includeDev?: boolean, propsMap?: PropsLookup): Promise; declare function buildDepTreeFromFiles(root: string, manifestFilePath: string, includeDev?: boolean, targetFramework?: string): PkgTree | Promise; declare function extractTargetFrameworksFromFiles(root: string, manifestFilePath: string, includeDev?: boolean): Promise; declare function extractTargetFrameworksFromProjectFile(manifestFileContents: string): Promise; declare function extractTargetFrameworksFromProjectConfig(manifestFileContents: string): Promise; declare function containsPackageReference(manifestFileContents: string): Promise; declare function extractTargetFrameworksFromProjectJson(manifestFileContents: string): Promise; declare function extractTargetFrameworksFromProjectAssetsJson(manifestFileContents: string): Promise; declare function extractProps(propsFileContents: string): Promise;