/** * A utility to mimic the default "foreach" method's means of determining * whether or not a property still exists. This is intended to support other * "foreach" implementations that don't have this sort of check built in. * * @param {Object} obj - The object to check * @param {String} P - The name of the property being checked * @return {Boolean} - A boolean indicating the result of the check */ declare function isPropertyPresent(obj: any, P: any): any; export default isPropertyPresent;