import { type ProjectManifest } from '@pnpm/types'; interface PkgData { alias: string | undefined; name: string; version: string; path: string; resolved?: string; } export type PkgInfo = Omit & Pick & { from: string; repository?: string; }; export declare function getPkgInfo(pkg: PkgData): Promise; export {};