export default objVals;
/**
 * Convert an object into array which entries are the prop values of the object
 *
 * @param {Object} obj - Object to be arrayified
 * @return {Array} Array of the object.
 */
declare function objVals(obj: Object): any[];
