import { SECRET_INTERNAL_getScopeContext as getScopeContext } from 'jotai';
type Scope = NonNullable<Parameters<typeof getScopeContext>[0]>;
type Options = {
    scope?: Scope;
    enabled?: boolean;
};
export declare const useAtomsDebugValue: (options?: Options) => void;
export {};
declare type Awaited<T> = T extends Promise<infer V> ? V : T;