import type { WritableAtom } from 'jotai'; export declare function atomWithReducer(initialValue: Value, reducer: (value: Value, action?: Action) => Value): WritableAtom; export declare function atomWithReducer(initialValue: Value, reducer: (value: Value, action: Action) => Value): WritableAtom;