import type { SetStateAction } from 'jotai/vanilla';
type Options = {
    sync?: boolean;
};
export declare function atomWithProxy<Value extends object>(proxyObject: Value, options?: Options): import("jotai/vanilla").WritableAtom<Value, [update: SetStateAction<Value>], void>;
export {};
