import predicateType from '../helpers/predicateType'; /** * Creates an object composed of the object properties predicate returns truthy for. * * @since 1.0.0 * * @param {Object} object - The source object. * @param {Function} [predicate = identity] - The function invoked per iteration. * @returns {Object} - The new object. * * @example * * const object = { 'a': 1, 'b': '2', 'c': 3 }; * * pickBy(object, (value) => typeof value === 'number'); * // => { 'a': 1, 'c': 3 } */ declare const pickBy: (object: Object, predicate?: predicateType) => Object; export default pickBy;