import { ProjectConfiguration } from '@nx/devkit'; import { ImportMapResult } from '../types/import-map-result'; /** * Builds the import map for all Go projects in the workspace. * * This creates: * 1. A base import map: module path -> project name * 2. Per-project replace directive maps: old path -> new path (or null for suppression) * * @param projects - Map of project names to their configurations * @param workspaceRoot - Root directory of the Nx workspace * @returns ImportMapResult with base map and replace directives */ export declare function buildImportMap(projects: Record, workspaceRoot: string): Promise;