import type { Atom, Scope } from '../core/atom'; declare type AnyAtomValue = unknown; declare type AnyAtom = Atom; declare type AtomsValues = Map; declare type AtomsDependents = Map>; declare type AtomsSnapshot = Readonly<{ values: AtomsValues; dependents: AtomsDependents; }>; /** * @deprecated use object snapshot instead */ declare type DeprecatedIterableSnapshot = Iterable; export declare function useGotoAtomsSnapshot(scope?: Scope): (snapshot: AtomsSnapshot | DeprecatedIterableSnapshot) => void; export {};