/** * Shuffles the positions of an array's entries (without mutating the array). * * @category Array * @category Package : @augment-vir/common * @returns A new array (does not mutate). * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common) */ export declare function shuffleArray(input: ReadonlyArray): Array;