import { NpmNS } from '../types'; /** * Fetch package version */ export declare function fetchPackageVersion(name: string, tag: string): Promise; /** * Resolve local packages. */ export declare function resolveLocalPackages({ cwd, packagesDir, }: { cwd: string; packagesDir?: string; }): NpmNS.IPackage[]; /** * Retrieve packages informations */ export declare function resolvePackages({ cwd, tag, }: { cwd?: string; tag?: string; }): Promise; //# sourceMappingURL=resolvePackages.d.ts.map