import type { PrimitiveAtom } from 'jotai/vanilla'; export declare function atomWithLazy(makeInitial: () => Value): PrimitiveAtom; declare type Awaited = T extends Promise ? V : T;