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