import type { Lens } from '../lens'; import type { Run, WithRoot, StoreRenderList } from '../types'; /** * Use proxies to secure values and match them to lens. */ export declare function makeProxy(value: unknown, storeRenderList: StoreRenderList, run: Run, autoSync: boolean, editable: boolean, rootValue: S, lensValue?: Lens, depth?: number, depthList?: (string | number | symbol)[]): T;