import type { IEnumerable } from "../types/index.js"; /** * Determine if a source is a IEnumerable * @param source Any Value * @returns Whether or not this is an Enumerable type */ export declare const isEnumerable: (source: any) => source is IEnumerable;