/** * Creates an object composed of the picked object properties. * * @since 1.0.0 * * @param {Object} object - The source object. * @param {string|string[]} paths - The property path(s) to pick. * @returns {Object} - Returns the new object. * * @example * * const object = { 'a': 1, 'b': '2', 'c': 3 }; * * pick(object, ['a', 'c']); * // => { 'a': 1, 'c': 3 } * * pick(object, 'a', 'c'); * // => { 'a': 1, 'c': 3 } */ declare const pick: (object: Object, paths: string | string[]) => Object; export default pick;