import { IPkg, IBuildGitInfo, IPlatformInfo, IHardware } from '../typings'; import GitInfo from './GitInfo'; declare function getPkg(cwd: any): IPkg; declare function getArtifactInfo(stats: any): { hash: any; size: number; manifest: any; }; declare function getGitInfo(cwd: any): IBuildGitInfo; declare function getPlatformInfo(): IPlatformInfo; declare function getHardware(): IHardware; declare function getDepTree(cwd: string): Promise; declare function generateStatsFile(filePath: string, stats: object): Promise; export { GitInfo, getHardware, getPkg, getArtifactInfo, getGitInfo, getPlatformInfo, getDepTree, generateStatsFile, };