import type { ComponentInfo, Detector, ParseContext } from './types.js'; /** * Redux detector. * - Phase 1: finds Redux store declarations. * - Phase 2: connects consumers to the single exact store when the project has one, * otherwise to a shared ambiguous virtual store node. */ export declare class ReduxDetector implements Detector { readonly name = "redux"; detectDeclarations(ctx: ParseContext): void; enrichComponent(component: ComponentInfo, ctx: ParseContext): void; } //# sourceMappingURL=redux.detector.d.ts.map