import { IProxyable } from "./IProxyable"; import MessageNode from "./index"; export declare const propertyHandler: { get(target: IProxyable, key: string): any; set(target: IProxyable, key: string, value: any): boolean; apply(target: IProxyable, context: any, args: any[]): IProxyable; construct(target: IProxyable, args: any[], context: any): IProxyable; }; export default function proxyFactory(objectID: number, path: string[], messageNode: MessageNode): IProxyable;