/** * Randomizes the order of elements in a given array and returns a new array. */ declare function shuffle(array: ReadonlyArray): Array; declare function sample(array: ReadonlyArray): T | null; declare function remove(array: Array, item: T): boolean; export declare const ArrayUtils: { shuffle: typeof shuffle; sample: typeof sample; remove: typeof remove; }; export {}; //# sourceMappingURL=array.d.ts.map