import type { ComponentInfo, ComponentEnrichment, Detector } from './types.js'; /** * Extracts state variable names from a component. * Function: const [count, setCount] = useState(0) → ['count'] * Function: const [state, dispatch] = useReducer(…) → ['state'] * Class: state = { count: 0, name: '' } → ['count', 'name'] * Class: this.state = { count: 0 } (constructor) → ['count'] */ export declare class StateSlotsDetector implements Detector { readonly name = "state-slots"; enrichComponent(component: ComponentInfo): ComponentEnrichment; } //# sourceMappingURL=state-slots.detector.d.ts.map