export declare class PropertyAccessorWrapper { private obj; constructor(obj: any); has(prop: string): boolean; get(prop: string): any | null; private parts; }