import type { TypeGuardFn } from './types'; /** * A Type Guard that checks if the given value is an array * * @category Type Guard */ declare const isArray: TypeGuardFn; export { isArray };