import type { Atom, ExtractAtomValue } from 'jotai/vanilla'; import { useStore } from './Provider.mjs'; type Options = Parameters[0] & { delay?: number; unstable_promiseStatus?: boolean; }; export declare function useAtomValue(atom: Atom, options?: Options): Awaited; export declare function useAtomValue>(atom: AtomType, options?: Options): Awaited>; export {};