/** * Immutably removes a set of key from an object * * @since v0.0.1 * @category Object * @param {T} obj - The original object * @param {string[]} keys - An array of keys to remove * @returns {*} * @example * const obj = { hello: 'world', hi: 'earth', hey: 'planet' }; * removeKeys(obj, ['hi', 'hey']) //=> { hello: 'world' } */ export declare const removeKeys: >(obj: T, keys: string[]) => any;