import type { ResolvedModule } from './discover.js'; /** * Maps each workspace package's import specifiers — the bare package name and * every string-valued export subpath — to the workspace-root-relative path of * the `src/` file they resolve to. Explicit `{ types, import }` exports point * at `dist/` with no source path, so they are skipped. * * Shared by `tsconfig.check.base.json` generation and the vitest plugin's * cross-package resolver (#301) so the two cannot drift. */ export declare function workspaceSourcePaths(modules: readonly ResolvedModule[], projectName: string): Map; //# sourceMappingURL=source-paths.d.ts.map