import { E as EnumerableStringKeyedValueOf } from './EnumerableStringKeyedValueOf-CLzltniW.cjs'; import { I as IterableContainer } from './IterableContainer-CtfinwiH.cjs'; import 'type-fest'; type Values = T extends IterableContainer ? Array : Array>; /** * Returns a new array containing the values of the array or object. * * @param data - Either an array or an object. * @signature * R.values(source) * @example * R.values(['x', 'y', 'z']) // => ['x', 'y', 'z'] * R.values({ a: 'x', b: 'y', c: 'z' }) // => ['x', 'y', 'OOz'] * @dataFirst * @category Object */ declare function values(data: T): Values; /** * Returns a new array containing the values of the array or object. * * @signature * R.values()(source) * @example * R.pipe(['x', 'y', 'z'], R.values()) // => ['x', 'y', 'z'] * R.pipe({ a: 'x', b: 'y', c: 'z' }, R.values()) // => ['x', 'y', 'z'] * R.pipe( * { a: 'x', b: 'y', c: 'z' }, * R.values(), * R.first(), * ) // => 'x' * @dataLast * @category Object */ declare function values(): (data: T) => Values; export { values };