import type { ExtractionNode } from '../../../contracts/types.js'; import type { JsFrameworkAdapter } from './types.js'; interface ReduxReference { id: string; label: string; sourceFile: string; line: number; nodeKind: NonNullable; frameworkRole: string; kind: 'slice' | 'thunk' | 'action' | 'selector'; } export declare function inspectReduxModuleExports(filePath: string): ReadonlyMap; export declare const reduxAdapter: JsFrameworkAdapter; export {};