import { AtomStore } from "./store"; /** * Context for the global atom store. */ export declare let AtomContext: import("react").Context<{ store: AtomStore; }>; /** * Hook to access the global atom store. * * @returns The atom store instance. */ export declare function useAtomStore(): { store: AtomStore; };