/** * Returns a boolean indicating whether the array contains any elements. * * @returns `true` if the array is not empty. */ export declare const any: (arr: readonly T[]) => boolean;