import type { WorkspacePackage } from '../types/package-json.ts';
type Packages = Map<string, WorkspacePackage>;
type WorkspacePkgNames = Set<string>;
export default function mapWorkspaces(cwd: string, workspaces: string[]): Promise<[Packages, WorkspacePkgNames]>;
export {};
