import { useStore } from 'jotai/react';
type Options = Parameters<typeof useStore>[0] & {
    enabled?: boolean;
};
export declare const useAtomsDebugValue: (options?: Options) => void;
export {};
declare type Awaited<T> = T extends Promise<infer V> ? V : T;