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