interface Values { (obj: O): Array; } /** * Returns a list of all the enumerable own properties of the supplied object. * Note that the order of the output array is not guaranteed across different * JS platforms. * * @param {Object} obj The object to extract values from * @return {Array} An array of the values of the object's own properties. * @example * * values({a: 1, b: 2, c: 3}); //=> [1, 2, 3] */ declare const _default: Values; export default _default;