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