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