import { type RootAction } from 'graph/index.js'; import { type Reducer } from 'store/types.js'; export declare const counterReducer: Reducer; export type CounterState = { value: number; }; export type CounterAction = IncrementAction; export type IncrementAction = RootAction | { type: 'INCREMENT'; payload: number; }; //# sourceMappingURL=counterReducer.d.ts.map