import { N as NarrowedTo } from './NarrowedTo-CDIykNaN.cjs'; import 'type-fest'; /** * A function that checks if the passed parameter is an Array and narrows its type accordingly. * * @param data - The variable to check. * @returns True if the passed input is an Array, false otherwise. * @signature * R.isArray(data) * @example * R.isArray([5]) //=> true * R.isArray([]) //=> true * R.isArray('somethingElse') //=> false * @category Guard */ declare function isArray(data: ArrayLike | T): data is NarrowedTo>; export { isArray };