import type { CypherExecutor } from '../contract-extractor.js'; import type { GroupManifestLink } from '../types.js'; interface GoModuleMeta { modulePath: string; groupPath: string; repoPath: string; requires: string[]; } export interface GoWorkspaceResult { links: GroupManifestLink[]; discoveredModules: Map; } export declare function extractGoWorkspaceLinks(repos: Record, repoPaths: Map, _dbExecutors?: Map): Promise; export {};