import { useSetAtom } from 'jotai/react'; import { WritableAtom } from 'jotai/vanilla'; import { RESET } from 'jotai/vanilla/utils'; type Options = Parameters[1]; export declare function useResetAtom(anAtom: WritableAtom, options?: Options): () => unknown; export {}; declare type Awaited = T extends Promise ? V : T;