/** * Proxies getters on the target to the object. * * @param {Object} target * The proxy to add getters to. * * @param {Object} obj * Object with properties we want to proxy getters to. * * @params {string[]} keys * The keys to proxy. */ export declare function proxyGetters(target: T, obj: U, keys: Array): void; /** * Invokes the function in a promise-safe way. */ export declare function promiseTry(fn: () => R): R extends Promise ? Promise

: Promise;