import { useAtom } from 'jotai'; import type { Atom, WritableAtom } from 'jotai'; type Scope = NonNullable[1]>; type DevtoolOptions = { name?: string; scope?: Scope; enabled?: boolean; }; export declare function useAtomDevtools>(anAtom: WritableAtom | Atom, options?: DevtoolOptions): void; export declare function useAtomDevtools>(anAtom: WritableAtom | Atom, name?: string, scope?: Scope): void; export {};