import ts from 'typescript'; import type { SpiEdge, SpiSymbol } from './types.js'; export type DetectRoutingControllersFrameworkContext = { sourceFile: ts.SourceFile; fileId: string; symbolsByFile: Map; edges: SpiEdge[]; checker: ts.TypeChecker; pathToFileId: Map; }; export declare function detectRoutingControllersFramework(ctx: DetectRoutingControllersFrameworkContext): void;