import ts from 'typescript'; import type { SpiSymbol } from './types.js'; export type DetectNextjsFrameworkContext = { sourceFile: ts.SourceFile; fileId: string; /** Workspace-relative POSIX-normalized file path (the SpiFile.path). */ filePath: string; symbolsByFile: Map; }; export declare function detectNextjsFramework(ctx: DetectNextjsFrameworkContext): void;