/** * returns an array with the provided array values shuffled * @example * shuffle([1, 2, 3, 4]) * // returns [4, 1, 3, 2] */ export default function shuffle(arr: T[]): T[]; //# sourceMappingURL=shuffle.d.ts.map