import { StoreApi } from '../../../.external/lib/zustand'; /** * Creates a proxy for an object and synchronizes it with a store. * * @example * const proxy = useProxy({ key: 'value' }); * console.log(proxy.key); // 'value' */ export declare function useProxy(obj: T): T & Pick, 'getState' | 'setState'>;