import type { VideoProductionMode } from './types.js'; import type { LegacyImportSummary } from './types.js'; export interface ProjectDependencyEdge { from: string; to: string; reason?: string | null; } export interface ProjectDependencyReport { generatedAt: string; root: string; nodes: Array<{ slug: string; opsStatus: string; legacyImportSummary?: LegacyImportSummary; platform?: string; blockedBy: string[]; }>; edges: ProjectDependencyEdge[]; blockedProjects: string[]; blockerProjects: string[]; } export declare function buildDependencyReport(root?: string, productionMode?: VideoProductionMode): Promise; //# sourceMappingURL=dependencies.d.ts.map