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