import type { WorkspacePackage } from '../types/package-json.ts';
export type WorkspaceGraph = Map<string, Set<string>>;
export declare function createWorkspaceGraph(cwd: string, wsNames: string[], wsPkgNames: Set<string>, wsPackages: Map<string, WorkspacePackage>): WorkspaceGraph;
