import type { TypeOfDictionary } from '../types'; import type { Dictionary } from '@sdkset/types'; /** * 推荐原生:[Object.values](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Object/values)。 * 返回一个数组,数组由给定对象自有可枚举字符串键属性值组成。 * * @example * values({ one: 1, two: 2, three: 3 }) * => [1, 2, 3] * * @param object 给定对象 */ export declare function values(object: V): TypeOfDictionary[];