import type { Atom } from './types.mjs'; /** * Sets the state of the passed atom. */ export declare const hydrateAtom: (atom: Atom, value: T) => void; /** * Resets a state of passed atom. */ export declare const resetAtom: (atom: Atom) => void; /** * Resets states of passed atoms. */ export declare const resetAtoms: (atoms: ReadonlyArray>) => void;