/** * A type-safe version of `Object.fromEntries` that preserves key and value types. * * @param entries - An iterable of key-value pairs to construct the object from. * @returns An object constructed from the provided key-value pairs. */ export declare const objectFromEntries: (entries: Iterable) => Record;