import ts from 'typescript'; import type { SpiSymbol } from './types.js'; export type DetectFastifyFrameworkContext = { sourceFile: ts.SourceFile; fileId: string; symbolsByFile: Map; }; export declare function detectFastifyFramework(ctx: DetectFastifyFrameworkContext): void;