import type { Atom, WritableAtom } from 'jotai/vanilla';
type DevtoolOptions = {
    name?: string;
    enabled?: boolean;
};
export declare function useAtomDevtools<Value, Result>(anAtom: WritableAtom<Value, [Value], Result> | Atom<Value>, options?: DevtoolOptions): void;
export {};
