/** * Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore. * * @param object * @param keys */ declare function pick(object: T, keys: readonly U[]): Pick; export = pick;