export declare class ArrayHelper { static chunks(array: Array | null, n: number | null): Array> | null; static distinct(array: Array | null, fn: (x: T) => any): Array | null; static fromCsv(content: string | null): Array | null; static group(array: Array, fn: (x: T) => any): Array>; static repeat(item: T, n: number): Array; }