import { Atom, Scope } from './atom';
declare type Awaited<T> = T extends Promise<infer V> ? Awaited<V> : T;
export declare function useAtomValue<Value>(atom: Atom<Value>, scope?: Scope): Awaited<Value>;
export {};
