import type { CypherExecutor } from '../contract-extractor.js'; import type { GroupManifestLink } from '../types.js'; interface PythonPackageMeta { name: string; importName: string; groupPath: string; repoPath: string; workspaceDeps: string[]; } export interface PythonWorkspaceResult { links: GroupManifestLink[]; discoveredPackages: Map; } export declare function extractPythonWorkspaceLinks(repos: Record, repoPaths: Map, _dbExecutors?: Map): Promise; export {};