/** * Checks whether value is an array and is not empty * * @example * is.notEmptyArray([1]); // true * is.notEmptyArray([]); // false * is.notEmptyArray('string'); // false */ export default function notEmptyArray(value: any): boolean;