import { Atom } from 'jotai';
export declare function debounceAtom<Value>(readable: Atom<Value>, delay: number): Atom<Value>;
