import { SECRET_INTERNAL_getScopeContext as getScopeContext } from 'jotai'; import { WritableAtom } from 'jotai'; import { RESET } from './constants'; type Scope = NonNullable[0]>; export declare function useResetAtom(anAtom: WritableAtom, scope?: Scope): () => void; export {}; declare type Awaited = T extends Promise ? V : T;