import type { AnalysisContext, Finding } from "./types.js"; export interface DtsExportGraph { filePath: string; exportedTypes: Set; hasModuleAugmentation: boolean; } export interface DependencyNode { name: string; version: string; dependencies: Set; } export declare function parseDtsWithSwc(entryPointRelative: string): Promise; export declare function buildLockfileGraph(projectRoot: string): Map; export declare function analyzeLayer6(context: AnalysisContext): Promise;