/** * Checks if array's length is less than the target number. * If null or undefined is given then this function returns false. * * @param value The value array being checked. * @param target The maximum size of the array * @returns True if array's length is less than the target number, false otherwise. */ export declare function isArraySizeLessThan(value: any[], target: number): boolean;