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