/** * Returns a new object by picking properties from an object. */ declare function pick(obj: T, ...keys: string[]): Pick; export { pick };