import type { Atom, Scope, WritableAtom } from './atom'; export declare function getValue(atom: Atom | WritableAtom, scope?: Scope | undefined): import("./store").AtomState; export declare const setValue: (atom: Atom | WritableAtom, update: Update, scope?: Scope | undefined) => void;