import type { IObjectOf } from "@thi.ng/api";
/**
 * Iterator which yields all values of given object's own properties
 * (Similar to `Object.values()`).
 *
 * @remarks
 * See also:
 *
 * - {@link keys}
 * - {@link pairs}
 *
 * @param x -
 */
export declare function vals<T>(x: IObjectOf<T>): IterableIterator<T>;
//# sourceMappingURL=vals.d.ts.map