/**
* Determines whether the given objectis iterable.
* @param {any} obj - The object to check.
* @returns {obj is Iterable<any>} - Returns true if the objectis iterable; otherwise, returns false.
*/
export function isIterable(obj: any): obj is Iterable<any>;