declare let nativeToStringFunctionString: string; declare const overriddenFns: Map; declare const proxyToTarget: Map; declare const ReflectCached: { construct: any; get: any; set: any; apply: any; setPrototypeOf: any; ownKeys: any; getOwnPropertyDescriptor: any; }; declare const ObjectCached: { setPrototypeOf: any; getPrototypeOf: any; defineProperty: any; entries: any; getOwnPropertyDescriptors: any; getOwnPropertyDescriptor: any; }; declare const fnToStringDescriptor: any; declare const fnToStringProxy: any; declare let isObjectSetPrototypeOf: boolean; declare const nativeToStringObjectSetPrototypeOfString: string; declare enum ProxyOverride { callOriginal = "_____invoke_original_____" } declare let sourceUrl: string; declare function cleanErrorStack(error: Error, replaceLineFn?: (line: string, index: number) => string, startAfterSourceUrl?: boolean): Error; declare function proxyConstructor(owner: T, key: K, overrideFn: (target?: T[K], argArray?: T[K] extends new (...args: infer P) => any ? P : never[], newTarget?: T[K]) => (T[K] extends new () => infer Z ? Z : never) | ProxyOverride): void; declare function internalCreateFnProxy(targetFn: any, descriptor: PropertyDescriptor, onApply: (target: any, thisArg: any, argArray: any[]) => any): any; declare function proxyFunction(thisObject: T, functionName: K, overrideFn: (target?: T[K], thisArg?: T, argArray?: T[K] extends (...args: infer P) => any ? P : never[]) => (T[K] extends (...args: any[]) => infer Z ? Z : never) | ProxyOverride, overrideOnlyForInstance?: boolean): T[K]; declare function proxyGetter(thisObject: T, propertyName: K, overrideFn: (target?: T[K], thisArg?: T) => T[K] | ProxyOverride, overrideOnlyForInstance?: boolean): any; declare function proxySetter(thisObject: T, propertyName: K, overrideFn: (target?: T[K], thisArg?: T, value?: T[K] extends (value: infer P) => any ? P : never) => void | ProxyOverride, overrideOnlyForInstance?: boolean): any; declare function defaultProxyApply(args: [target: any, thisArg: T, argArray: any[]], overrideFn?: (target?: T[K], thisArg?: T, argArray?: any[]) => T[K] | ProxyOverride): any; declare function getDescriptorInHierarchy(obj: T, prop: K): { descriptorOwner: T; descriptor: any; }; declare function addDescriptorAfterProperty(path: string, prevProperty: string, propertyName: string, descriptor: PropertyDescriptor): void;