export = isIterable; /** * Returns `true` when the argument is an iterable, `false` otherwise * @alias module:samsam.isIterable * @param {*} val - A value to examine * @returns {boolean} Returns `true` when the argument is an iterable, `false` otherwise */ declare function isIterable(val: any): boolean;