import type { DefaultIterationOptions, IterationOptions } from '../IterationOptions.js'; import type { Value } from './Value.js'; import type { Override } from '../../../type/index.js'; type GetValues = O['includeSymbols'] extends true ? Value[] : O['includeSymbols'] extends false ? Value>[] : never; export declare function getValues_(obj: Obj, options: O): GetValues; /** * Similar to `Object.values(obj)` * * - Typed more strict than `Object.values()` */ export declare function getValues(obj: Obj): GetValues; /** * Similar to `Object.values(obj)` * * - Typed more strict than `Object.values()` * * @param options - Configure to enable iteration over symbol properties and/or * nonEnumerable properties */ export declare function getValues>(obj: Obj, options: O): GetValues>; export {}; //# sourceMappingURL=getValues.d.ts.map