/** * Creates an object composed of the picked `object` properties. * * @param {Object} object The source object. * @param {...(string|string[])} paths The property paths to pick. * @returns {Object} Returns the new object. */ export default function pick(object: any, ...paths: (string | string[])[]): any;