/** * Resolve package names to their source directories. * * First checks the current directory's package.json for a direct match, * which handles single-package repos efficiently. If any requested * packages remain unresolved, walks up the directory tree to find a * workspace root and globs its workspace patterns to build a complete * package map. * * @returns Absolute paths to the resolved package directories. * @throws If any requested package name cannot be resolved, with a list * of available packages. */ export declare function resolvePackages(packageNames: Array): Promise>; //# sourceMappingURL=packages.d.ts.map