/** * @name arrayShuffle * @description Shuffles the input array (unlike sort, this is not done in-place) */ export declare function arrayShuffle(input: T[]): T[];