import { WritableAtom } from 'jotai';
export declare const RESET: unique symbol;
export declare function atomWithReset<Value>(initialValue: Value): WritableAtom<Value, typeof RESET | Value | ((prev: Value) => Value)>;
