import { PkgInfo } from '@snyk/dep-graph'; import { Dependency } from './parsers/types'; export declare function pkgInfoFrom(manifestFileContents: string): PkgInfo; export declare function getDependenciesFrom(manifestFileContents: string, includeDevDependencies: boolean): Dependency[];