/** * Returns `true` if length of the array is greater than `0`. * @param array The array to check. * * @example * ```typescript * isNotEmpty([]); // => false * isNotEmpty([1, 2, 3]); // => true * ``` */ declare const isNotEmpty: ( array: AS, ) => array is Exclude; export default isNotEmpty; //# sourceMappingURL=isNotEmpty.d.ts.map