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