export interface ImportEntry { source: string; symbols: string[]; isLocal: boolean; } export interface ImportNode { file: string; imports: ImportEntry[]; importedBy: string[]; } export interface ImportTreeResult { root: string; nodes: ImportNode[]; summary: string; } export declare function buildImportTree(filePath: string, projectRoot: string, depth?: number): ImportTreeResult; //# sourceMappingURL=ImportTreeContext.d.ts.map