export interface RepoFact { id: string; confidence: number; evidence: string[]; } export interface RepoServiceBoundary { id: string; path: string; classification: string; } export interface RepoMap { generatedAt?: string; workspaceId: string; workspaceType: string; dominantLanguages: RepoFact[]; frameworks: RepoFact[]; services: RepoServiceBoundary[]; criticalPaths: string[]; highRiskPaths: string[]; existingInstructionSurfaces: string[]; sharedRuntimeRoot?: string; sharedRuntimeBridges?: string[]; sharedRuntimeArtifacts?: string[]; authoritativeAiLayerRoot?: string; authoritativeHiddenSurfaces?: string[]; visibleBridgePaths?: string[]; qualityGaps: RepoFact[]; supportingEvidence: string[]; } //# sourceMappingURL=repo-map.d.ts.map