import type { IEnumerable } from "../../types/index.js"; /** * Iterates through the object * @param source Source Object * @returns IEnumerabe<[TKey, TValue]> of Key Value pairs */ export declare const enumerateObject: (source: TInput) => IEnumerable<[ keyof TInput, TInput[keyof TInput] ]>;