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