import { Atom, ExtractAtomValue } from 'jotai/vanilla'; import { useStore } from './Provider'; type Store = ReturnType; type Options = { store?: Store; delay?: number; }; export declare function useAtomValue(atom: Atom, options?: Options): Awaited; export declare function useAtomValue>(atom: AtomType, options?: Options): Awaited>; export {}; declare type Awaited = T extends Promise ? V : T;