import * as JsFunction from "./JsFunction.js"; import * as JsObject from "./JsObject.js"; import * as PubSub from "./PubSub.js"; export type { Proxy as t }; export declare const symbol: unique symbol; /** * A container for a proxied object. */ export type Proxy = JsObject.ReadonlyDeep>; /** * Returns a new object that will be proxied instead of cloned by Transporter. */ export declare function from(value: T): Proxy; /** * Returns `true` if the value is proxy container. */ export declare function isProxy(value: Proxy | U): value is Proxy; //# sourceMappingURL=Proxy.d.ts.map