/** * Checks if an array contains any items. * @param value The array being checked * @return True if the array is empty and false otherwise. */ export declare function isArrayEmpty(value: any[]): boolean;