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