export declare const arrayContainsAll: (haystack: [], needles: []) => boolean; export declare const arrayContainsOne: (haystack: [], needles: []) => boolean; export declare const arrayFromNumber: (number: number) => number[]; export declare const removeDuplicates: (array: any[]) => any[]; export declare function sliceIntoChunks(arr: T[], chunkSize: number): Array; export declare function mergeArrays(array: T[][]): T[];