/**
 * 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<ArrayElementType>(input: ReadonlyArray<ArrayElementType>): Array<ArrayElementType>;
