export type { Metadata as t }; export declare const symbol: unique symbol; /** * Metadata for a proxy. */ export type Metadata = { /** * The id of the client agent managing this proxy. */ clientAgentId: string; /** * The path to the value in the original object from the dereferenced value. */ objectPath: string[]; }; /** * Returns metadata for a proxy. */ export declare function get(proxy: Proxy): Metadata | null; //# sourceMappingURL=Metadata.d.ts.map