export declare class ProxyUtil {
    static safeProxy<T extends object>(obj: T, getter: (obj: T, p: PropertyKey) => any): T;
}
