//#region src/is-array-like.d.ts /** * Check if the provided value's type is "array-like" * * @param value - The value to type check * @returns An indicator specifying if the object provided is "array-like" */ declare const isArrayLike: (value: any) => boolean; //#endregion export { isArrayLike }; //# sourceMappingURL=is-array-like.d.mts.map