/** * Checks if the provided object conforms to the source object's properties and values. * * @since 1.0.0 * * @param {Object} object - The object to check. * @param {Object} source - The object of property predicates to conform to. * @returns {boolean} - Returns `true` if object conforms, else `false`. * * @example * * const object = { 'a': 1, 'b': 2 }; * conformsTo(object, { 'b': (n) => n > 1 }); // => true * conformsTo(object, { 'a': (n) => n > 1 }); // => false */ declare const conformsTo: (object: any, source: any) => boolean; export default conformsTo;